摘要:
实验四 #include<stdio.h> #include<ctype.h> int main(){ FILE *fp; fp=fopen("data4.txt","r"); if(fp==NULL){ printf("打不开,有问题 \n"); return 1; } int line=0,ch 阅读全文
posted @ 2025-06-09 11:03
MA2C
阅读(6)
评论(0)
推荐(0)
摘要:
实验4 #include <stdio.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double sales_price; // 售价 int 阅读全文
posted @ 2025-06-01 17:56
MA2C
阅读(8)
评论(0)
推荐(0)