千树K
2018-07-21 11:31
#include <stdio.h>
int getGirth(int a,int b,int c)
{
if( (a+b)<=c || (a+c)<=b || (b+c)<=a ) //判断是否为三角形
{
printf("不构成三角形\n");
return 0;
}
else
{
int cirf = a+b+c ;
return cirf;
}
}
int main()
{
int a, b, c;
a = 3;
b = 4;
c = 5;
printf("三角形的周长是:%d\n", getGirth(a,b,c));
return 0;
}
getGirth() 函数中的参数一开始就已经是定义了abc,而且,这个还需要一步判断才能决定是否能进行周长的运算,再则,直接调用肯定也找不到这个东西,这个整型是定义在getGirth()函数里面的,你在main()函数里找不到。
C语言入门
926020 学习 · 20793 问题
相似问题