Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
150718 徐康浩 13求n加到m的和 C++ Accepted 1 MS 276 KB 132 2026-03-30 17:02:58

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ int w,e,x; cin>>x>>w; e=0; for(;x<=w;x++){ e=e+x; } cout<<e; }