二维数组
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 }
本文来自博客园,作者:Bytezero!,转载请注明原文链接:https://www.cnblogs.com/Bytezero/p/15071884.html