1_2_2D.C
上传用户:wyn840322
上传日期:2007-01-13
资源大小:294k
文件大小:1k
源码类别:

数据结构

开发平台:

C/C++

  1. /* ======================================== */
  2. /*    程序实例: 1_2_2d.c                    */
  3. /*    简单的结构应用(二)                    */
  4. /* ======================================== */
  5. void main()
  6. {
  7.    struct score                   /* 成绩结构声明   */
  8.    {
  9.       int math;                   /* 数学成绩       */
  10.       int english;                /* 英语成绩       */
  11.       int computer;               /* 电脑成绩       */
  12.    } jslin,chen;                   /* 结构变量声明   */
  13.    jslin.math = 80;                /* 设置jslin的成绩 */
  14.    jslin.english = 85;
  15.    jslin.computer = 83;
  16.    chen.math = 75;                /* 设置chen的成绩 */
  17.    chen.english = 91;
  18.    chen.computer = 88;
  19.    /* 输出成绩 */
  20.    printf("1:  name       math     english    computer n");
  21.    printf("2:  JSLin        %d         %d         %d    n",
  22.            jslin.math,jslin.english,jslin.computer);
  23.    printf("3:  Chen        %d         %d         %d    n",
  24.            chen.math,chen.english,chen.computer);
  25. }