06 2021 档案
实验 Ⅶ
摘要:1 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 int main() { 5 FILE *fin, *fout; // 定义文件类型指针 6 int ch; 7 8 fin = fopen("file1.txt", "r"); // 以只读文本方式打 阅读全文
posted @ 2021-06-11 13:02 wyfaa 阅读(100) 评论(2) 推荐(0)
text 6
摘要:1 1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<string.h> 4 #define N 3 5 6 typedef struct student{ 7 int id; 8 char name[20]; 9 char subject[20 阅读全文
posted @ 2021-06-05 10:54 wyfaa 阅读(90) 评论(1) 推荐(0)