gpt4 book ai didi

c - 打印数组元素的代码如何工作?

转载 作者:行者123 更新时间:2023-11-30 14:35:02 25 4
gpt4 key购买 nike

此代码打印数组元素,但我无法理解 k[x-1] 如何给出数组元素。

 #include<stdio.h>

int main()
{
int x[]={2,4,6,8,10},k=1;
while (k<=5)
{
printf ("%3d",k[x-1]);
k++;
}
return 0;
}

最佳答案

在 C 中,数组索引从 0 开始。像 int x[]={2,4,6,8,10} 这样的数组将具有值 x[0]=2 等等。通常,当迭代数组时,使用如下约定:

for (int i = 0; i < length; i++)
printf("%3d",x[i]);

由于您提供的代码从 1 开始索引,因此您必须减一才能获取正确的元素。

关于c - 打印数组元素的代码如何工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58712112/

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