首页 | 新闻 | 新品 | 文库 | 方案 | 视频 | 下载 | 商城 | 开发板 | 数据中心 | 座谈新版 | 培训 | 工具 | 博客 | 论坛 | 百科 | GEC | 活动 | 主题月 | 电子展
返回列表 回复 发帖

C语言经典算法之数据结构3

C语言经典算法之数据结构3

#include <stdio.h>
void main()
{
  struct childrec  /* 定义结构类型childrec */
   {
    char initial;  /* 姓名首字母 */
    int age;       /* 年龄       */
    int grade;     /* 考试成绩   */
   };
  struct childrec kids[12] = /* 定义 childrec 结构体数组并初始化 */
   {
     {'A',16, 80},
     {'B',13, 80},
     {'C',19, 84},
     {'D',19, 89},
     {'E',12, 84},
     {'F',17, 82},
     {'G',16, 90},
     {'H',16, 85},
     {'I',16, 96},
     {'J',17, 91},
     {'K',13, 72},
     {'L',14, 69}
   };
  int index;
  for (index = 0;index < 12;index++)
     printf("%c is %d years old and got a grade of %d\n",
        kids[index].initial, kids[index].age,kids[index].grade);
}
返回列表