else
{
int cirf = a+b+c ; //计算三角形周长
return cirf;
}
不能,return 0表示清空,回到初始的值,如果用return0则会输出0,而现在要方便调用周长的值,就用return cirf
return是返回,cirf是周长