Using multiple analog thermistors

Yes I am trying to set up a 5 analog thermistor sensor for temperatures and am only able to get the ability to do one. How do I get them all to process the temperature at the same time and display.
My sensors are NTC. Thank you

No link to the hardware used, no wiring diagram, no sketch. We don't have a crystal ball.

You cannot measure at the same time but very shortly one after the other.

Yes I am trying to set up a 5 analog thermistor sensor for temperatures and am only able to get the ability to do one.

If you can read one, say A0, then simply place the others on A1, A2, A3, etc. Each requires its own 10K (general value for 10K NTC) resistor.

I typically read each 10 times and take an average... This permits time for settling and such... And gives a reasonable answer which is consistent with other digital thermometers to 1 decimal place. Check out Wikipedia for more info on thermistors.

Also check out the Arduino Playground regarding thermistors and Steinhart–Hart equation.

Ray