我根本无法弄清楚如何正确输出数字。我知道这与我拥有 cout 的方式有关,但我无法弄清楚它到底是什么。
#include <iostream>
using namespace std;
int main()
{
const int size = 10;
int values[size];
cout << "Please enter up tp 10 positive numbers." << endl;
for (int i=0; i < size; i++)
{
cin >> values[i];
}
cout << endl;
cout << values[size];
system("pause");
return 0;
}
最佳答案
这里有一个提示:要打印出数字,您需要使用循环。
关于c++ - 编写一个循环,读取十个数字然后输出它们,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18919124/