请教一下为什么只有80分
#include <bits/stdc++.h> using namespace std; int main() { int n; scanf("%d",&n); if(n%2==1)printf("odd"); else printf("even"); return 0; }