編寫程式根據輸入的三角形的三條邊判斷是否能組成三角形

時間 2021-05-13 09:56:33

1樓:匿名使用者

1、private sub command1_click()dim a, b, c as integera = val(inputbox("邊1"))b = val(inputbox("邊2"))c = val(inputbox("邊3"))if a + b > c and a + c > b and b + c > a then

print "周長:" & a + b + celse

print "不能構成三角形"

end if

end sub

2、private sub command1_click()dim s as integer

s=0for i=1 to 70

if i mod 7=0 then

s=s+i

endif

next i

print s

end sub

寫了12兩道,希望能幫上你

2樓:郗抒才蘊涵

#include

voidmain(void)

if(b*b+c*c==a*a)

if(c*c+a*a==b*b)

if(true==1)}

c語言編寫程式:輸入三角形的三條邊,判斷它們能否構成三角形,若能則指出何種三角形。

3樓:匿名使用者

||&&、||運算子使用錯誤,**為:

#include

int main()

else

printf("普通三角形\n");

return 0;}

4樓:古爾格

|||||#include

int main()

else

printf("不構容成三角形\n");

return 0;}

5樓:西湖觀柳

first, float number shouldn't be compared with this equal operater == , you should sub them, and then compare the result with 1e-7 or so.

second, you missed use "or" and "and" operater.

如何用c語言解決這個問題 根據輸入的三角形的三條邊判斷是否能組成三角形,若可以則輸出面積和三角形型別

6樓:法克奧拉

這個用一般的if()語句就行了,只要設定對三角形的判斷條件。

輸入三角形任意三條邊,判斷是否能夠成三角形,如果可以構成三角形求面積c語言

7樓:兄弟連教育北京總校

#include

void main()

else

}getch();}

本題要求編寫程式,根據輸入的三角形的三條邊a b c,計算並

張光澤最愛 include include double sqrt double n main while b 1 while c 1 l a b c 計算周長 printf 周長為 輸出周長 printf d l printf n l 2 計算面積,計算與輸出都為整數,如有不同請自行更改 s l ...

輸入三角形的三條邊判斷能否構成三角形若能

include indlude define acute angel 1 銳角 define right angel 2 直角 define obtuse angel 3 鈍角 bool is int a,int b,int c return r int get type int a,int b,i...

已知三角形三條邊怎麼求面積,已知三角形的三邊長如何求面積?

花降如雪秋風錘 已知三角形的三邊,可以使用海 式直接計算出三角形的面積,公式中三角形的面積s p p a p b p c 其中p a b c a,b,c是三角形的三條邊。海 式又譯作希 式 海龍公式 希羅公式 海倫 秦九韶公式。它是利用三角形的三條邊的邊長直接求三角形面積的公式。相傳這個公式最早是由...