问答详情
源自:6-2 数组的遍历

运行不出来

#include <stdio.h>

int main()

{

    int arr[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};

   

    int i;

    for(i=0;i<10;i++)

    {

        printf("%d\n",arr[i]);

    }

   

   

   

   

   

    return 0;

}


提问者:qq_红鬼_0 2015-11-28 21:54

个回答

  • 流浪_老
    2015-11-28 23:05:15
    已采纳

    能运行啊 !

  • 摘星星的男人
    2015-11-29 20:48:36

    兄弟,能运行的