Perulangan dasar C++

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

main(){
int i,j;
for(i=0;i<5;i++){
for(j=1;j<5;j++){
cout<<i<<" "<<j<<endl;
}
}
getch();
}




Share this

Related Posts

Previous
Next Post »