06 2021 档案

摘要:task3 生成文本文件file3.dat,可读 task4 子任务1 学生成绩从高到低排列,且生成文件file4.dat,但文件不直观可读 子任务2 #include <stdio.h> #define N 10 typedef struct student{ int num; char name 阅读全文
posted @ 2021-06-18 00:32 张诗若 阅读(30) 评论(0) 推荐(0)
摘要:#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20] 阅读全文
posted @ 2021-06-10 22:26 张诗若 阅读(32) 评论(0) 推荐(0)