12 2023 档案

摘要:task4: 1 #include<stdio.h> 2 int main() 3 { 4 char a; 5 int count=0; 6 FILE *fp; 7 fp = fopen("data4.txt","r"); 8 if(fp==NULL) { 9 printf("fail to ope 阅读全文
posted @ 2023-12-19 09:52 lei1459 阅读(12) 评论(0) 推荐(0)
摘要:task4: 1 #include <stdio.h> 2 #define N 10 3 4 typedef struct { 5 char isbn[20]; // isbn号 6 char name[80]; // 书名 7 char author[80]; // 作者 8 double sal 阅读全文
posted @ 2023-12-17 20:56 lei1459 阅读(52) 评论(0) 推荐(0)