Sabtu, 26 Maret 2016

program 4.2

membuat bilangan ganjil

memggunakan 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<=8;i++)
{ if(i%2==1)
    cout<<i<<"";
}  
cout<<endl;

cout<<"menggunakan while"<<endl;
while( a<=8)
{if(a%2==1)
cout<<a<<""; a++;
    }  
cout<<endl;

cout<<"menggunakan do-while"<<endl;
do{

if( b%2==1)
cout<<b<<""; b++;
}
while(b<=8);



return 0;
}


2. dengan raptor

Tidak ada komentar:

Posting Komentar