SEARCH THE BLOG

Friday, February 1, 2013

WHILE LOOP

For example, we are going to make a program to count down      using a while loop:

// custom countdown using while

INPUT-

#include <iostream.h>
int main ()
{
int n;
cout << "Enter the starting number > ";
cin >> n;
while (n>0) {
cout << n << ", ";
 --n;
}
cout << "FIRE!";
return 0;
}

OUTPUT-

Enter the starting number
8
8, 7, 6, 5, 4,
3, 2, 1, FIRE!



Related Posts:

  • FORLOOP            Example of countdown using a forloop. // countdown using a for loop INPUT- #include <iostream.h… Read More
  • C++ program Probably the best way to start learning a programming language is with a program. So here is our first program: // my first program… Read More
  • C++ PROGRAM              // my second program IN C++               IN… Read More
  • WHILE LOOP For example, we are going to make a program to count down      using a while loop: // custom countdown using while INPUT- … Read More
  • C++ PROGRAMS // operating with variables INPUT-            #include <iostream.h> int main () { // declaring v… Read More

0 comments:

Post a Comment