Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
81985 sh25_chenyj 求和 C++ 无测评数据 0 MS 0 KB 157 2026-01-09 17:37:35

Tests(0/0):


#include<bits/stdc++.h> using namespace std; int main(){ int tot = 0; for(int i = 1; i <= 100; i++){ tot += i; } cout<<tot; }