vote up 3 vote down star

I know a while loop can do anything a for loop can, but can a for loop do anything a while loop can?

Please provide an example.

flag
1  
Totally depends on the programming language. A real for-loop can't. – Smasher Oct 3 at 17:47
Assuming a language with unbounded integers and a "real for-loop", as Smasher says, and as everyone who quoted C misunderstood -- worse, I think they are serious --, consider computing the first prime larger than a given integer n. I know how to do it with while-loops. Can you do it with only for-loops? – Pascal Cuoq Oct 3 at 18:42
By using the phrase "real for loop" you construct a tautology. A "real for loop" is a crippled while loop, and is thus less capable, but you haven't learned anything from the exercise. – dmckee Oct 3 at 19:55
2  
BTW--I think I can do the next largest prime problem with for loops, but it will be very inefficient. One for loop up to n to test each number for primality and compute P the product of all primes not more than n. Then another for loop from n+1 to P+1 to test each value for primality and save the lowest value. Breaks can make it faster, but are optional. – dmckee Oct 3 at 20:24
@dmckee I believe that using the phrase "real for loop" makes the question interesting. If the question was about writing "for(;cond;)" then so be it, my comment is off-topic then. But if, as I believe, the question is about a problem that can be solved with while-loops but not with for-loops, I think that my comment is spot on. – Pascal Cuoq Oct 3 at 21:12
show 2 more comments

4 Answers

vote up 1 vote down

If you have a fixed bound and step and do not allow modification of the loop variable in the loop's body, then for loops correspond to primitive recursive functions.

From a theoretical viewpoint these are weaker than general while loops, for example you can't compute the Ackermann function only with such for loops.

If you can provide an upper bound for the condition in a while loop to become true you can convert it to a for loop. This shows that in a practical sense there is no difference, as you can easily provide an astronomically high bound, say longer than the life of the universe.

link|flag
vote up 2 vote down

The while loop and the classical for loop are interchangable:

for (initializer; loop-test; counting-expression) {
    …
}

initializer
while (loop-test) {
    …
    counting-expression
}
link|flag
vote up 0 vote down

In C-like languages, you can declare for loops such as this:

for(; true;)
{
    if(someCondition)
       break;
}

In languages where for is more well defined, infinite loops would be a case requiring a while loop.

link|flag
vote up 14 vote down

Yes, easily.

while (cond) S;

for(;cond;) S;
link|flag
1  
I may as well add that this applies in C, C++, Java, C# and probably plenty of other languages that borrow heavily from C, but does not apply in e.g. Pascal. – Steve314 Oct 3 at 18:19
That's because in C and derivatives, a for loop IS a while loop, just written differently. – Jurily Oct 14 at 9:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.