摘要: #include <stdio.h> int main() { FILE *fp; fp = fopen("data4.txt","r"); char ch; int count = 0; do { ch = fgetc(fp); if(ch >= 33 && ch <= 126) count++; 阅读全文
posted @ 2022-12-27 20:21 此木223 阅读(21) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <string.h> #define N 3 typedef struct student { int id; char name[20]; char subject[20]; double perf; double mid; double f 阅读全文
posted @ 2022-12-27 13:24 此木223 阅读(28) 评论(0) 推荐(0)