gpt4 book ai didi

c++ - 我必须在 C++ 中使用标志吗?

转载 作者:太空宇宙 更新时间:2023-11-04 15:31:30 24 4
gpt4 key购买 nike

<分区>

这是我面临的问题。用户要输入一个数字,如果该数字在数组中,我想将其打印为有效数字,否则我想将其打印为无效数字。

但是这段代码不起作用;它只打印 Not Valid

我查看了其他类似的代码。他们使用了一个 bool 标志。

为什么我需要在这个程序中使用标志,什么时候需要使用标志?

#include<iostream>

using namespace std;

int main()
{
const int SIZE=6;

int arry[SIZE]={5658845,4520125,1230493,4856970,2078594,2393741};

int number;
cout <<"Enter the number"<<endl;

for(int i=0; i<SIZE; i++)
{
cin>>number;

if(arry[i]==number)
cout<<"This is valid number"<<endl;
else
cout << "This is not valid number"<<endl;
}
return 0;

}

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