Violet-

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2022年12月27日

摘要: #include <stdio.h> #include <stdlib.h> #include <time.h> #include <string.h> typedef struct { long int no; char name[20]; char clas[100]; } STU; int m 阅读全文
posted @ 2022-12-27 15:22 李旭晴 阅读(18) 评论(0) 推荐(0)

摘要: #include <stdio.h> #define N 5 // 定义结构体类型struct student, 并定义STU为其别名 typedef struct student { long no; char name[20]; int score; } STU; // 函数声明 void in 阅读全文
posted @ 2022-12-27 14:41 李旭晴 阅读(19) 评论(0) 推荐(0)