二维数组

 1 #include<stdio.h>
 2 int main()
 3 {
 4     //使用二维数组 进行的打印
 5     double scores[4][3] = {{87,56,89},{98,55,46},{98,65,56},{98,65,23}};
 6     int i,j;
 7     for(i = 0; i < 4;i++)
 8     {
 9         for(j = 0; j< 3;j++)
10         {
11             printf("%-8.2lf",scores[i][j]);     // i的数组里的J元素 ‘-’ 号左对齐  8字符
12         }
13         printf("\n");
14     }
15 
16 }

 

posted on 2021-07-28 11:45  Bytezero!  阅读(32)  评论(0编辑  收藏  举报