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

数据结构

开发平台:

C/C++

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