0
komentar
Posted in
Label:
Kuliah
#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 :