摘要: PART1 1. // 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen(" 阅读全文
posted @ 2019-12-25 17:42 九分湖水 阅读(87) 评论(2) 推荐(0)