Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
12532 杨振航 【基础题】求和(1) C++ Accepted 2 MS 692 KB 149 2021-05-21 13:36:49

Tests(1/1):


Code:

#include <bits/stdc++.h> using namespace std; int main() { int a=0; for(int b=12,i=1002;b<=i;b+=10){ a+=b; } cout<<a<<endl; }