結果

提出番号 362
提出者 oribe
言語 C++
提出日時 2017-07-15 15:27:45
問題名 (1)Odd&Even
結果 WA
点数 0%

テストケース

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

ソースコード

#include "iostream"
#include "string"
using namespace std;
int main(){
	int a,b;
	cin >> a ;
	if (a%2 == 1){
		cout << "odd" << endl;
	}
		else {
			cout <<"even"<< endl;

		}
	}