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