Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
44298 王shizhao 求1+2+3+... C++ 通过 0 MS 240 KB 146 2024-03-29 17:01:37

Tests(1/1):


#include<iostream> using namespace std; int sum(int n){ return(n*(n+1)/2); } int main() { int n; cin>>n; cout<<sum(n); return 0; }


测评信息: