Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
128612 常钰杰 累加问题 C++ Accepted 6 MS 264 KB 249 2025-08-18 16:37:19

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; void dg(int x) { if(x >= 100) { return; } else { x++; cout << x << endl; dg(x); } } int main() { dg(0); return 0; }