Perhaps you meant something like this:
i=1-1; while (++i<=10) { printf ("%d\n"); } /* 1..10 */
i=10+1; while (--i>=1) { printf ("%d\n"); } /* 10..1 */
Chat with our AI personalities
Generally speaking a for loop looks like this:for(Initialization;condition;increment){Do Stuff}whereas a while loop looks like this:while(condition){Do Stuff}Before the while loop there should be some initialization and somewhere in the Do Stuff section there should be statements that change the condition. Those statements are analogous to the increment section of the for loop.
There are three forms of loop commonly used in C/C++, the for loop, the while loop and the do-while loop. The for loop is most commonly used whenever an action is going to be performed a set amount of times. For example, to sum every element in an array: for(i = 0; i < arraySize; i++) { sum = sum + array[i]; } The while loop and do-while loop are commonly used to loop until a condition is met. The difference between the two is that the do-while loop goes through one iteration before checking its condition, while the while loop checks its condition before any execution of the loop. Example do-while loop: do { randomNumber = rand() % 10; }while(randomNumber != 6); Example while loop: cout > number; while(number < 0) { cout > number; }
A while statement is one type of looping statement. by which we can start a loop in our programs. while loop is precondition checking statement, because it first check its condition then loop will go to its body part. EX. while(i>0) { //body part } here when i will >0 then it will check it body part and execute it and display result.
Repeat until loops run until a condition is true. They repeat at the end of the loop and they will always run at least once. While do loops will only run while a condition is true. They may not run at all.
Think of a Javascript loop as a loop in a rollercoaster, which, as you know, makes you go back to the place you started the loop, and then continue. Javascript allows you to create sections of code that make the program handler to go back to the point specified, so instead of copying out a functions directions twice, you can tell the program to reference that section of code for the instructions, and then jump back to where it was.