Pages

Saturday, July 25, 2015

#include <iostream>
#include <conio.h>
using namespace std;

int main ()
{
    int n = 10;
   
    while (n>0) {
          cout << n << ", ";
          --n;
    }
   
    cout << "liftoff!\n";
    getche ();
}

No comments:

Post a Comment