#include <iostream>
using namespace std;
int
main(void)
{
int iBroj;
cout<<"Upisi broj: "<<endl; cin>>iBroj;
(iBroj%2==0)? iBroj=true: iBroj=false;
switch(iBroj)
{
case true: cout<<"Broj je paran"<<endl; break;
case false: cout<<"Broj je neparan"<<endl; break;
}
system ("PAUSE");
return EXIT_SUCCESS;
}
|
#include <iostream>
using namespace std;
class KakavBroj
{
int Broj;
public:
KakavBroj(int b=1){Broj=b;};
~KakavBroj(){};
bool ParanNeparan(void)
{
return (Broj%2==0)? true: false;}
};
int
main(void)
{
int iBroj;
cout<<"Upisi broj: "<<endl; cin>>iBroj;
KakavBroj KB(iBroj);
if(KB.ParanNeparan())
cout<<"Broj je paran"<<endl;
else
cout<<"Broj je neparan"<<endl;
system("PAUSE");
return EXIT_SUCCESS;
}
|