Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
92362 | 123456789q | [在线测评解答教程] 求和 | C++ | Wrong Answer | 1 MS | 268 KB | 152 | 2024-10-01 10:14:10 |
#include <bits/stdc++.h> using namespace std; int main(){ int n,i=0,a=0; cin>>n; while(i<=n){ a=a+i; i++; } cout<<a; return 0; }
------Input------
23 59
------Answer-----
276 1770
------Your output-----
276