結果

提出番号 47
提出者 tone_back
言語 C++
提出日時 2017-05-22 23:48:54
問題名 (1)Odd&Even
結果 AC
点数 100%

テストケース

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

ソースコード

#include <stdlib.h>
#include <iostream>



using namespace std;


int main(){

	int num;
	cin >> num;

	if (num % 2){
		cout << "Odd" << endl;
	}
	else{
		cout << "Even" << endl;
	}

	return 0;
}