摘要: 任务一 点击查看代码 #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 *p 阅读全文
posted @ 2026-06-14 14:40 尽繁华 阅读(7) 评论(0) 推荐(0)
摘要: 任务四 点击查看代码 #include <stdio.h> #include<stdlib.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 dou 阅读全文
posted @ 2026-06-14 14:31 尽繁华 阅读(9) 评论(0) 推荐(0)
摘要: 任务四 点击查看代码 #include <stdio.h> #include <math.h> int classify_triangle(int a, int b, int c) { if (a <= 0 || b <= 0 || c <= 0 || a + b <= c || a + c <= 阅读全文
posted @ 2026-06-14 14:26 尽繁华 阅读(6) 评论(0) 推荐(0)