如前所述,可以将用户的输入存储到新的||中每次while循环迭代后的下一个变量。
例如
double average;
double test0, test1, test2,test3, test4;
while (int i = 0; i < 6; i++){
cout << "Enter a test score" << endl;
cin >> test0... net iteration is test1.....test2 endl;
}
或者将测试分数存储在数组中会更有意义吗?
答案 0 :(得分:2)
这就是为什么我们将std :: vector http://en.cppreference.com/w/cpp/container/vector ... cin放入临时变量然后将其推入。