SHOW_2D.C
资源名称:C.rar [点击查看]
上传用户:qq5388545
上传日期:2022-07-04
资源大小:29849k
文件大小:0k
源码类别:

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. void main(void)
  3.  {
  4.    int row, column;
  5.    float table[3][5] = {{1.0, 2.0, 3.0, 4.0, 5.0},
  6.                         {6.0, 7.0, 8.0, 9.0, 10.0},
  7.                         {11.0, 12.0, 13.0, 14.0, 15.0}};
  8.    for (row = 0; row < 3; row++)
  9.     for (column = 0; column < 5; column++)
  10.      printf("table[%d][%d] = %fn", row, column, table[row][column]);
  11.  }