結果

提出番号 56
提出者 niyukan
言語 C++
提出日時 2017-05-23 16:49:09
問題名 (1)Odd&Even
結果 WA
点数 0%

テストケース

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

ソースコード

#include "bits/stdc++.h"
using namespace std;
int main(){
    int x;
	cin >>x;
	if(x%2==1)
	  cout <<"odd>>";
	else if(x%2==0)
      cout <<"even>>";

}