題目連結: https://zerojudge.tw/ShowProblem?problemid=d064# 解題思路如果除以 2 的餘數為 0 就是偶數!!# 程式碼#include <iostream>using namespace std;int main(){ int x; while(cin>>x) if(x%2==0) cout<<"Even"<<endl; else cout<<"Odd"<<endl;} Zerojudge 條件判斷