阅读代码,用数字展示守艺倒计时,输出内容是?
#include <iostream>
using namespace std;
int main()
{
for(int i = 1; i <= 4; i++)
{
for(int j = 5;j >= 1;j--)
{
cout << j << " ";
}
cout << endl;
}
return 0;
}
1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5
5 4 3 2 1 5 4 3 2 1 5 4 3 2 1 5 4 3 2 1
1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4
5 4 3 2 1 5 4 3 2 1 5 4 3 2 1