问答详情
源自:6-1 数组初体验

这是错在哪里了,运行失败

#include <stdio.h>

int main()

{

   

    int arrFirst[3] ={1,2,3};

    

    int arrSecond[] = {12,13,14};

    

    int arrThird[3];

    

    arrThird[0]=120;

    arrThird[1]=130;

    arrThird[2]=140;

    

    printf("%d\n",arrFirst[1]);

    

    printf("%d\n",arrSecond[1]);

    

    printf("%d\n",arrThird[1]);

    return 0;

}


提问者:eason理 2019-05-01 00:36

个回答

  • weixin_慕姐9382933
    2019-05-14 21:00:57

    中文的机器没法识别,中文,明显比英文的,占用地方大


  • 慕标2568847
    2019-05-07 13:08:38


        int arrFirst[3] ={1,2,3};
       
        int arrSecond[] = {12,13,14};
       数字之间的逗号没有切换成英文下的