06 2021 档案
摘要: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
阅读全文
摘要:1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<string.h> 4 #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 5 6 typedef struct student { 7 int id; /*学生学号 */
阅读全文
浙公网安备 33010602011771号