題目連結: https://zerojudge.tw/ShowProblem?problemid=d277# 解題思路不難發現,答案就是要找最靠近 N 的偶數 (包含 N)# 程式碼#include <iostream>using namespace std;int main(){ int N ; while(cin>>N) cout<<N-N%2<<endl; } Zerojudge 運算子