Program menampilkan angka ganjil dari 1 sampai 10.
1. RAPTOR
2. 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;
cout<<"\t\tProgram Mencetak Bilangan Ganjil 0 Sampai 10 "<<endl;
for(int a=0;a<=10;a++){
if(a%2==1)
cout<<a<<endl;
}
return 0;}
/* 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;
cout<<"\t\tProgram Mencetak Bilangan Ganjil 0 Sampai 10 "<<endl;
for(int a=0;a<=10;a++){
if(a%2==1)
cout<<a<<endl;
}
return 0;}
Dan untuk hasil compilenya adalah :
Semoga bermanfaat !!!
Wassalamuallaikum wr. wb.
0 comments :
Post a Comment