Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
156676 郑雨心 累加问题 C++ Accepted 4 MS 264 KB 165 2026-07-06 11:08:12

Tests(1/1):


Code:

#include<iostream> using namespace std; void a(int x){ cout<<x++<<endl; if(x>100) { return; } a(x); } int main(){ int x=1; a(x); return 0; }