Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
136035 丁俊杰 累加器 C++ Accepted 1 MS 256 KB 243 2025-11-08 22:01:28

Tests(1/1):


Code:

#include <iostream> // 里面有cin,cout等函数 #include<cmath> //里面有abs,sqrt,pow等函数 using namespace std; int main(){ int tot=0; for(int i=1;i<=100;i++) { tot+=i; } cout<<tot; return 0; }