gpt4 book ai didi

c - 为什么会出现 "Array subscript is not an integer"错误?

转载 作者:太空宇宙 更新时间:2023-11-04 08:20:19 27 4
gpt4 key购买 nike

void capturat(i vec[5])

{

float i; for (i=0;i<=5;i++)
{
printf("Dame los tiempos 5 maximo:\t");
scanf("%f",&vec[i]);
}
}

float imprimet(float vec[5])

{

float i;
for(i=0;i<5;i++)
{
printf("Tu tiempo es %f \n",vec[i]);
}
}

编译器说我在函数 capturat()imprimet() 中有一个“数组下标不是整数”。

最佳答案

你应该为你的循环计数器使用整数 i因为数组下标必须是整数

int i; 
for (i=0;i<=5;i++)
{
printf("Dame los tiempos 5 maximo:\t");
scanf("%f",&vec[i]);
}

关于c - 为什么会出现 "Array subscript is not an integer"错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33726868/

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