Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
93091 张奕杨 累加器 C++ Accepted 0 MS 264 KB 159 2024-10-09 19:36:22

Tests(1/1):


Code:

#include<iostream> using namespace std; int main(){ int i=0,h=0; while(i<101){ h=h+i; ++i; } cout<<h; return 0; }