#include <iostream>
using namespace std;
namespace myNum
{
int x = 105;
}
int main()
{
cout<<boolalpha<<(myNum::x)&1<<endl;
return 0;
}
using namespace std;
namespace myNum
{
int x = 105;
}
int main()
{
cout<<boolalpha<<(myNum::x)&1<<endl;
return 0;
}
#include<stdio.h>
int main()
{
printf("Hello imooc");
return 0;
}
int main()
{
printf("Hello imooc");
return 0;
}
2019-10-29