Slow down analogRead or Serial.print without delay()

Just create a counter and print every 100th or 1000th iteration through loop:

count = 1000;
if (count-- == 0)
{
//print
count = 1000;
}