摘要: task2.c 1 #include <stdio.h> 2 3 int main() 4 { 5 double a, b, c; 6 7 scanf("%lf%lf%lf", &a, &b, &c); 8 9 if((a+b>c)&&(b+c>a)&&(a+c>b)) 10 printf("能构成 阅读全文
posted @ 2025-10-08 11:44 叶永祺 阅读(5) 评论(1) 推荐(0)