通过次数
0
提交次数
如题
#include<bits/stdc++.h> using namespace std; int main() { int s=0,t=0; for(int i=2;i<=100;i+=2) s+=i; cout<<s; return 0; }