三角形面積之海倫公式

CODE #include<stdio.h> #include <math.h> int main() { int a,b,c; float p,s; scanf("%d%d%d",&a,&b,&c); if(a>=b+c || b>=a+c || c>=a+b) return 0; else { p=(float)(
相關文章
相關標籤/搜索