12 2023 档案

摘要:4 #include <stdio.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double sales_price; // 售价 int s 阅读全文
posted @ 2023-12-18 14:21 KXJSLL 阅读(24) 评论(0) 推荐(0)
摘要:Task1_1 1 #include <stdio.h> 2 #define N 5 3 void input(int x[], int n); 4 void output(int x[], int n); 5 void find_min_max(int x[], int n, int *pmin, 阅读全文
posted @ 2023-12-04 10:46 KXJSLL 阅读(8) 评论(0) 推荐(0)