Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
137503 芦睿霖 累加器 C++ Accepted 0 MS 256 KB 148 2025-11-18 15:36:46

Tests(1/1):


Code:

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