我有 5 个数组,我正在尝试使用循环填充它们。我想向用户询问第一个数组的 4 个条目(我确实有一个循环),然后循环到第二个、第三个、第四个和第五个数组。
我需要这些数组是单独的一维数组。
我可以获得第一个数组的信息,但由于它们都有不同的名称,我无法弄清楚如何让循环进入其他数组。
这是我仅获取第一个数组的信息的内容...我可以使用不同的数组名称重复所有内容 5 次,但似乎应该有一种使用循环的方法。
#include <iostream>
#include <iomanip>
#include <string>
using namespace std;
int main()
{
int Array1[4];
int Array2[4];
int Array3[4];
int Array4[4];
int Array5[4];
int countArray = 1;
cout <<" \nEnter 4 integers: \n\n";
for (countArray; countArray <=4; countArray ++)
cin >> Array1[countArray];
// Need to get info in to Array1, followed by Array2, Array3, Array4, Array 5
// Want ot use a loop to call the other arrays
countArray = 1;
cout << "\n\n";
for (countArray = 1; countArray <=4; countArray ++)
cout << Array1[countArray] << " ";;
cout << "\n\n";
// Need to outpit info from Array1, followed by Array2, Array3, Array4, Array 5
// Want ot use a loop to call the other arrays
system("PAUSE");
return 0;
}