请问各位童靴

来源:5-4 形参与实参

forever_never

2016-02-25 00:59

#include <stdio.h>

int getGirth(int a,b,c)

{

    int cirf;

    if(a+b<=c||b+c<=a||a+c<=b)

   { printf("不是三角形");

        return 0;}

    else

    {cirf=a+b+c;

    printf("三角形的周长是:%d",cirf);

      return 0;

    }

    

    

    

   

}

int main()

{

 int a=3,b=4,c=5;

 getGirth(a,b,c);

 return 0;

}

有哪里错了呢

写回答 关注

1回答

  • JINGMO_
    2016-02-25 14:44:22
    已采纳

     /*getGirth函数的参数定义错了。
    正确的定义方式是:*/
     int getGirth(int a,int b,int c)

    foreve...

    非常感谢!

    2016-02-25 21:30:53

    共 1 条回复 >

C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926021 学习 · 20793 问题

查看课程

相似问题