摘要: #include <stdio.h> //fopen函数的包 #include <stdlib.h> //exit()函数的包 #include <string.h> //typedef为数据类型搞一个别名,规范这个别名通常会用大写 typedef char * STRING; //用define来 阅读全文
posted @ 2021-07-28 18:27 学而不思则罔! 阅读(44) 评论(0) 推荐(0)
摘要: #include <stdio.h> //fopen函数的包 #include <stdlib.h> //exit()函数的包 #include <string.h> //定义一个枚举类型(默认从0开始) enum ctype1 { one = 6, two, three, four, five} 阅读全文
posted @ 2021-07-28 16:19 学而不思则罔! 阅读(42) 评论(0) 推荐(0)
摘要: #include <stdio.h> //fopen函数的包 #include <stdlib.h> //exit()函数的包 #include <string.h> //定义结构 struct Person{ char id; int name [4]; double score; }; //定义 阅读全文
posted @ 2021-07-28 14:18 学而不思则罔! 阅读(189) 评论(0) 推荐(0)