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 阅读全文
posted @ 2021-06-15 16:00 Jackynuist 阅读(31) 评论(1) 推荐(0)
摘要: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; /*学生学号 */ 阅读全文
posted @ 2021-06-10 12:20 Jackynuist 阅读(63) 评论(0) 推荐(0)