我正在尝试将其设置为仅显示大于21的数字,但是我很挣扎。
这是我到目前为止的代码。
#include <iostream>
using namespace std;
int main() {
const int NUM_ELEMENTS = 8; // Number of elements
int userVals[NUM_ELEMENTS]; // User numbers
int i = 0; // Loop index
// Prompt user to populate array
cout << "Enter " << NUM_ELEMENTS << " integer values..." << endl;
for (i = 0; i <= NUM_ELEMENTS; ++i) {
cout << "Value: " << endl;
cin >> userVals[i];
}
for (i = 0; i < NUM_ELEMENTS; ++i) {
cout << userVals[i] << " ";
}
return 0;
}
最佳答案
for (i = 0; i < NUM_ELEMENTS; ++i)
{
if(userVals[i] > 21)
cout << userVals[i] << " ";
}
关于c++ - 如何显示大于特定值的数字?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26389274/