执行如下C++程序后,当输入 4 时,输出的最后一行是?
int n; cin >> n; for(int i = n; i > 0; i--){ for(int j = 0; j < i; j++) cout << j + 1 << ' '; cout << endl; }
0
1
1 2
1 2 3 4