出题人配置了 Special Judge 程序。本题答案可能不唯一或者题目有特殊要求,请注意审题。
这是一道 提交答案 题。请在下方的文本编辑处提交你的答案,或者上传 ZIP。
#include <iostream> using namespace std; void p(int n) { if (n > 0) { p(n-1); for (int i = 0; i < n; i ++ ) cout << n; cout << endl; } } int main() { p(5); return 0; }
输出题目中程序的输出内容。
无。