06 2021 档案

摘要:任务一 // 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("file1 阅读全文
posted @ 2021-06-15 16:30 一减一 阅读(52) 评论(0) 推荐(0)
摘要:任务一 #include<stdio.h> #include<stdlib.h> #include<string.h> #define N 2 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name 阅读全文
posted @ 2021-06-07 22:40 一减一 阅读(58) 评论(2) 推荐(0)