using namespace std;
namespace myNum
{
int x = 105;
}
int main()
{
bool isFlag = false;
if(myNum::x % 2 == 0)
{
isFlag=false;
}
else
{
isFlag=true;
}
if(isFlag)
{
cout<<"x是奇数"<<endl;
}
else
{
cout<<"x是偶数"<<endl;
}
return 0;
}
namespace myNum
{
int x = 105;
}
int main()
{
bool isFlag = false;
if(myNum::x % 2 == 0)
{
isFlag=false;
}
else
{
isFlag=true;
}
if(isFlag)
{
cout<<"x是奇数"<<endl;
}
else
{
cout<<"x是偶数"<<endl;
}
return 0;
}
#include <iostream>
#include <stdlib.h>
using namespace std;
namespace myNum
int x = 105;
}
int main()
{ bool isOdd=true;
if(myNum::x % 2 == 0)
{ isOdd=false;
}
else
{isOdd=true;
}
if(isOdd)
{cout << "x is Odd"<<endl;
}
else
{ cout << "x is not Odd" <<endl;}
return 0;
}
#include <stdlib.h>
using namespace std;
namespace myNum
int x = 105;
}
int main()
{ bool isOdd=true;
if(myNum::x % 2 == 0)
{ isOdd=false;
}
else
{isOdd=true;
}
if(isOdd)
{cout << "x is Odd"<<endl;
}
else
{ cout << "x is not Odd" <<endl;}
return 0;
}