我知道这可能看起来像一个硬件问题,并作为我的客人来对待它,因为这是一个自学练习。
测试多个数组中是否存在某些值的最简单方法是什么?
例如:
伪代码
if array a contains a value of 4 and
array b contains a value of 2 and
array c contains a value of 6
then procede to procedure x
到目前为止我在实施中所做的
#include<stdio.h>
void x(void){/* do stuff */}
int main()
{
char fndA = 0;
char fndB = 0;
char fndC = 0;
int a[5] = {1,2,3,5,6};
int b[5] = {1,2,2,3,4};
int c[5] = {1,3,4,5,6};
for(int i=0;i<5;i++)
{
if(a[i]==4){fndA=1;}
}
//repeat for-loop for b/fndb and c/fndC
if (fndA && fndB && fndC) {x();}
return 0;
}
在这个例子中,x()
永远不会被调用,因为数组中不存在 4 a
。但是我最终是否必须for
为要测试的每个数组构建一个循环?谢谢