摘要: //已知三角形三边长求面积 #include <stdio.h> #include <math.h> int main() { float a,b,c,p,s; int x=0; while(1) { printf("请输入三角形边长给a"); scanf("%f",&a); if(a==9999. 阅读全文
posted @ 2021-06-23 11:15 myrj 阅读(1757) 评论(0) 推荐(0) 编辑