#include <stdio.h>
int main()
{
int a[4];
for (int i = 0; i <= 3; i++)
{
scanf("%d", &a[i]);
}
//下面为打印数组元素,查看是否正确
for (int c = 0; c <= 3; c++)
{
printf("%d ", a[c]);
}
return 0;
}
注意for循环中的条件2,从0下标开始。因为除定义数组外,所有函数使用数组元素,都对应下标。