06 2024 档案

摘要:task4.c #include<stdio.h> int main(){ int count; char ch; FILE *fp; fp=fopen("data4.txt","r"); if (fp==NULL){ printf("fail to open file\n"); return 1; 阅读全文
posted @ 2024-06-17 17:23 琳aaaaa 阅读(27) 评论(0) 推荐(0)
摘要:task4.c #include <stdio.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double sales_price; // 售价 阅读全文
posted @ 2024-06-03 23:11 琳aaaaa 阅读(26) 评论(0) 推荐(0)