saya menggunakan dengan c++ dan raptor
1. dengan c++
#include <iostream>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main(int argc, char** argv) {
int a=1,b=1;
cout<<"menggunakan for"<<endl;
for(int i=1;i<=4;i++)
{cout<<i;
}
cout<<endl;
cout<<"menggunakan while"<<endl;
while(a<=4)
{cout<<a; a++;
}
cout<<endl;
cout<<"menggunakan do while"<<endl;
do { cout<<b; b++;
}
while(b<=4);
return 0;
}
2. dengan raptor
Tidak ada komentar:
Posting Komentar