Codeforces 4A: 수박
2846 단어 pythonalgorithmscppcodeforces
문제 설명:
https://codeforces.com/contest/4/problem/A
파이썬
def solve(weight):
if weight > 2 and weight % 2 == 0:
print("YES")
else:
print("NO")
w = int(input())
solve(w)
C++
#include <iostream>
using namespace std;
int main() {
int w;
cin >> w;
if (w > 2 && w % 2 == 0) {
cout << "YES" << endl;
} else {
cout << "NO" << endl;
}
return 0;
}
아래 의견 섹션에서 귀하의 생각을 알려주십시오. 감사!
Reference
이 문제에 관하여(Codeforces 4A: 수박), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/itepsilon/codeforces-4a-watermelon-3nbm텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)