慕粉1255299925
2017-08-02 00:18
、24行根据注释提示填写代码
输出结果为: 三角形周长是:12
hello.c
#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 = ? ; //计算三角形周长
return cirf;
}
}
int main()
{
/* 定义三角形三边长 */
int a, b, c;
a = 3;
b = 4;
c = 5;
printf("三角形的周长是:%d\n", ?); //调用周长函数
return 0;
}
c=a+b;
getGirth
C语言入门
926026 学习 · 20793 问题
相似问题