| 提出番号 | 312 |
|---|---|
| 提出者 | hystyl243 |
| 言語 | C++ |
| 提出日時 | 2017-07-15 14:30:19 |
| 問題名 | (1)Odd&Even |
| 結果 | AC |
| 点数 | 100% |
| テストケース | 結果 | 得点 | 実行時間 | メモリ使用量 |
|---|---|---|---|---|
| 1 | AC | 100% | 2ms | 7984KB |
| 2 | AC | 100% | 1ms | 8320KB |
| 3 | AC | 100% | 1ms | 8304KB |
#include "iostream"
#include "string"
using namespace std;
int main()
{
int x;
cin >> x;
if(x % 2 ==1){
cout << "Odd" << endl;
}else{
cout << "Even" << endl;
}
}