Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
156646 万嘉宇 [在线测评解答教程] 求和 C++ Accepted 1 MS 272 KB 231 2026-07-04 13:56:16

Tests(10/10):


Code:

#include <iostream> using namespace std; int main() { int n,s=0; while (cin >> n) { for(int i=1;i<=n;i++){ s+=i; } cout<<s<<endl; s=0; } return 0; }