提交时间:2026-01-09 17:38:11
运行 ID: 81986
#include<bits/stdc++.h> using namespace std; int main(){ int tot = 0; for(int i = 1; i <= 100; i++){ tot += i; } cout<<tot; return 0; }