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