Tugas 4.2
Menampilkan Bilangan ganjil 1-10 dengan Dev C++ dan Raptor:Dev 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 i;
for(int i=0;i<=10;i++){
if(i%2==1)
cout<<i<<endl;
}
return 0;
}
Hasil Tampilannya :
Ini Raptornya :
0 komentar:
Posting Komentar