#45687: 記得是<=b


ercheng2011@gmail.com (Arthur Wang)

學校 : 不指定學校
編號 : 274284
來源 : [112.104.66.104]
最後登入時間 :
2025-03-29 22:28:37
d490. 我也愛偶數 -- 板橋高中教學題 | From: [112.104.66.104] | 發表日期 : 2025-03-30 08:28

#include <bits/stdc++.h>
using namespace std;
int main() {
    int a,b,total=0;
    cin>>a>>b;
    for(int i=a;i<=b;i++){
        if(i%2==0){
            total+=i;
        }
    }
    cout<<total;
}
 
ZeroJudge Forum