結果

提出番号 307
提出者 hystyl243
言語 C++
提出日時 2017-07-15 14:29:01
問題名 (1)Odd&Even
結果 CE
点数 0%

テストケース

テストケース 結果 得点 実行時間 メモリ使用量
1 CE 0% 0ms 0KB
2 CE 0% 0ms 0KB
3 CE 0% 0ms 0KB

ソースコード

#include "iostream"
#include "string"
using namespace std;
int main()
{
      int x
      cin >> x;
      if(x % 2 ==1){
       cout << "Odd" << endl;
}else{
	cout << "Even" << endl;
}
}