摘要:
任务一 点击查看代码 #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 阅读全文
摘要:
任务四 点击查看代码 #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 <= 阅读全文