gpt4 book ai didi

c++ - 如何显示大于某个值的数字?

转载 作者:行者123 更新时间:2023-11-28 02:39:42 25 4
gpt4 key购买 nike

我试图将其设置为仅显示大于 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com