最赞回答 / 慕娘3551181
float flagStatus(float);float sountDistance(float);money=(distance-3)*moneyForPer+13;
2021-10-23
最赞回答 / 0077404592
#include <stdio.h>int getGirth(int a,int b,int c){ if( (a+b)<=c || (a+c)<=b || (b+c)<=a ) //判断是否为三角形 { printf("不构成三角形\n"); return 0; } else { int cirf = a + b + c; //计算...
2021-10-21