摘要: 实验任务4 源代码 #include <stdio.h> #include <ctype.h> int main(){ FILE *fp; char ch; int lines=0; int chars=0; fp=fopen("data4.txt","r"); if(fp==NULL){ prin 阅读全文
posted @ 2025-12-24 20:18 fhe 阅读(13) 评论(1) 推荐(0)
摘要: 实验任务4 源代码 #include <stdio.h> #include <string.h> #define N 10 typedef struct{ char isbn[20]; char name[80]; char author[80]; double sales_price; int s 阅读全文
posted @ 2025-12-24 19:53 fhe 阅读(14) 评论(1) 推荐(0)