12 2023 档案

摘要:task4 #include <stdio.h> #include <ctype.h> int main() { FILE *file; int count = 0; int ch; file = fopen("d:\\data\\data4.txt", "r"); if (file == NULL 阅读全文
posted @ 2023-12-21 21:02 new沢 阅读(16) 评论(0) 推荐(0)
摘要:task4 源码 #include <stdio.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double sales_price; // 售 阅读全文
posted @ 2023-12-17 17:20 new沢 阅读(20) 评论(0) 推荐(0)
摘要:task1.1 #include <stdio.h> #define N 5 void input(int x[], int n); void output(int x[], int n); void find_min_max(int x[], int n, int *pmin, int *pmax 阅读全文
posted @ 2023-12-03 17:27 new沢 阅读(15) 评论(0) 推荐(0)