| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 149214 | 赵天睿 | 13求n加到m的和 | C++ | Wrong Answer | 0 MS | 268 KB | 139 | 2026-03-08 11:56:08 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,m,s=0; cin>>n>>m; for(int i=n;i<=m;i++){ s=n+m; } cout<<s; }
------Input------
5 13
------Answer-----
81
------Your output-----
18