Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
158 ZRH 累加问题 C++ Accepted 1 MS 260 KB 358 2022-07-21 10:26:39

Tests(1/1):


Code:

#include<iostream> //输入函数库 #include<iomanip> #include<cmath> //数学函数库 #include<cstdio> #include<ctime> #include<cstring> #include<cstdlib> #include<string> #include<stdlib.h> #include<sys/time.h> using namespace std; int t(int x){ cout<<x<<endl; if(x<100){ t(x+1); } } int main(){ t(1); return 0; }