摘要: 1 // 将file1.txt中小写字母转换成大写后,另存为file2.txt 2 #include <stdio.h> 3 #include <stdlib.h> 4 5 int main() { 6 FILE *fin, *fout; // 定义文件类型指针 7 int ch; 8 9 fin 阅读全文
posted @ 2021-06-15 16:00 Jackynuist 阅读(31) 评论(1) 推荐(0)