Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
160 | ZRH | 累加问题 | C++ | Accepted | 0 MS | 244 KB | 358 | 2022-07-21 10:27:41 |
#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; }