猿问

请求各位帮我看看 , 为什么我要输入4个数

#include <stdio.h>
#include <math.h>
int main()
{
 double a, b, c, s, Area;
 scanf("%lf%lf%lf ", &a, &b, &c);
 s =( a + b + c) / 2;
 Area = sqrt(s*(s - a)*(s - b)*(s - c));
 printf("三角形的面积是%f", Area);

 return 0;
}

ve0
浏览 1052回答 1
1回答
随时随地看视频慕课网APP
我要回答