提交时间:2025-12-26 15:18:49
运行 ID: 78047
#include<bits/stdc++.h> using namespace std; int main(){ int t = 0; for (int i = 1; i <= 100; i++){ t += i; } cout << t; return 0; }