C语言illegal else without matching if

日期:2017-10-23 14:08:22 人气:1

C语言illegal else without matching if

else 缺少 if,逻辑块没有用{ }符合括起来。 更正后的代码如下: #include#includevoid main(){ double a,b,c,s,m; printf("请输入三角形的三条边的长度:\n"); scanf("%lf,%lf,%lf",&a,&b,&c); if (a+b>c&&b+c>a&&a+c>b) //任意两边之和大于第三边,是三角形 { s=(
    A+
热门评论