12 2023 档案

摘要:实验四 源代码 #include<stdio.h> #define M 80 int main() { FILE *fp; char ch; fp = fopen("e:\\data4.txt","r"); if(fp == NULL) printf("fail to open file\n"); 阅读全文
posted @ 2023-12-20 19:42 Xmeik 阅读(10) 评论(0) 推荐(0)
摘要:实验四 源代码 #include <stdio.h> #include<string.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double 阅读全文
posted @ 2023-12-11 19:46 Xmeik 阅读(37) 评论(0) 推荐(0)