#include<iostream>
using namespace std;
int main(){
int bil;
cout<<endl;
cout<<"BILANGAN = ";
cin>>bil;
cout<<endl;
if(bil%2==0)
{
cout<<bil<<endl<<endl;
cout<<"MERUPAKAN BILANGAN GENAP"<<endl;
}
else
{
cout<<bil<<endl<<endl;
cout<<"MERUPAKAN BILANGAN GANJIL"<<endl;
}
cout<<endl;
system("PAUSE");
return 0;
}
Posting Komentar