阅读量:0
在C语言中,可以使用循环遍历数组,然后通过判断数组元素是否等于目标值来输出数组中某个值的索引。
下面是一个示例代码:
#include <stdio.h> int main() { int array[] = {2, 4, 6, 8, 10}; int length = sizeof(array) / sizeof(array[0]); int target = 6; int index = -1; // 初始索引设为-1,表示未找到目标值 // 循环遍历数组 for (int i = 0; i < length; i++) { // 判断数组元素是否等于目标值 if (array[i] == target) { index = i; // 记录目标值的索引 break; // 找到目标值后跳出循环 } } // 输出目标值的索引 if (index != -1) { printf("目标值 %d 在数组中的索引为 %d\n", target, index); } else { printf("数组中不存在目标值 %d\n", target); } return 0; }
在上述代码中,数组 array
中存储了一些整数,我们要查找的目标值是 target
,我们通过循环遍历数组,判断数组元素是否等于目标值,如果找到了目标值,则记录下它的索引,否则索引保持为初始值 -1。
最后,根据索引的值,输出目标值在数组中的位置。如果索引为 -1,则表示数组中不存在目标值。
运行上述代码,将输出:
目标值 6 在数组中的索引为 2