我有一個賦值使用嵌套for循環來打印5行和3列的二維數組的索引,而不使用數組。關於嵌套for循環
#include <iostream>
using namespace std;
int main()
{
int row;
int column;
cout << "Counting with nested loops: indices of row, column" << endl << endl;
for (row = 1; row <= 5; row++)
{
for (column = 1; column <= 3; column++)
{
}
cout << row << "," << column << "\t" << row << "," << column << "\t" << row << "," << column << "\t" << endl;
}
cout << "\n\n\n" << endl;
return 0;
}
這是我到目前爲止的代碼。我的目標是打印
1,1 1,2 1,3
2,1 2,2 2,3
等。當我運行該程序將打印
1,4 1,4 1,4
2,4 2,4 2,4
所以我行部分正確。任何人都可以幫我弄清楚我的錯誤是什麼?
如果沒有數組,將會打印什麼? –
那麼你的數據存儲在哪裏? –
@AndreasWalter我相信這個問題很清楚:「打印出二維數組的索引」 - 他必須打印數組的索引而不是內容。也許有人說過他們實際上的意思時,也是少數幾次之一。 :) – davmac