question about input values

what does it mean when in pseudocode when you are to "input 0 to terminate:" is this a loop ending its confusing me because its stated before the while loop is there a function to input 0 to terminate? thank you :)
1
2
3
4
for (int i = 0; i < /*termination condition*/; i++)
{
    // Do something
}
awesome thanks so its a for loop i see just not specified in the pseudocode i was givent just said that input 0 to terminate above the while loop i think its strange thanks man :)
The for loop and the while loop are not the same thing.

http://cplusplus.com/doc/tutorial/control/

Read the section on the different kinds of loops.
Topic archived. No new replies allowed.