C语言判断编号在数组中是否存在
时间: 2023-08-07 13:05:39 浏览: 76
C语言中判断两数组中是否有相同的元素
可以使用循环遍历数组,逐一判断数组中的元素是否等于给定的编号,如果存在则返回true,否则返回false。
下面是一段示例代码:
```c
#include <stdio.h>
int main() {
int nums[] = {1, 3, 5, 7, 9};
int target = 5;
int n = sizeof(nums) / sizeof(nums[0]);
int i;
for (i = 0; i < n; i++) {
if (nums[i] == target) {
printf("编号 %d 存在于数组中。\n", target);
return 0;
}
}
printf("编号 %d 不存在于数组中。\n", target);
return 0;
}
```
输出结果为:
```
编号 5 存在于数组中。
```
阅读全文