c语言在数组中查找数
时间: 2024-06-13 17:09:59 浏览: 120
以下是C语言在数组中查找数的例子:
```c
#include <stdio.h>
int main() {
int myarray[10] = {4, 3, 7, 4, 8, 7, 9, 4, 3, 6};
int target = 4;
int count = 0;
for (int i = 0; i < 10; i++) {
if (myarray[i] == target) {
count++;
}
}
printf("The number %d appears %d times in the array.\n", target, count);
return 0;
}
```
该程序中,我们定义了一个包含10个元素的整型数组myarray,并在其中存储了一些数字。我们想要查找数字4在数组中出现的次数,因此将其赋值给变量target。然后,我们使用一个for循环遍历整个数组,如果当前元素等于目标数字,则将计数器count加1。最后,我们输出目标数字在数组中出现的次数。
阅读全文