06 2021 档案

摘要:task 1 // 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("fi 阅读全文
posted @ 2021-06-18 12:05 Hollyview 阅读(61) 评论(0) 推荐(0)
摘要:task 1 #include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char n 阅读全文
posted @ 2021-06-10 16:09 Hollyview 阅读(42) 评论(1) 推荐(0)