twitter


#include <iostream>
#include <string>

using namespace std;
int main (){
  int a;
  a=1;
  while (1)
  {

          cout<< a<< endl;
          a=a+1;
          if(a>4) break;
          }
   system("PAUSE");
    return EXIT_SUCCESS;
}

Hasilnya :


0 komentar:

Posting Komentar