Monday, June 11, 2018

contoh program while Bahasa C++

#include <iostream>
#include <conio.h>
#include <stdio.h>

using namespace std;

main()
{
int x =1;
while (x<9)
{

cout << " 1 " << endl << endl;
x++;
}
getch ();
}

Labels: , , ,

0 Comments:

Post a Comment

Subscribe to Post Comments [Atom]

<< Home