Даны действительные числа a, b ,c. выяснить, существует ли треугольник с длинами сторон a,b,c. (в visual basic) ! пробовала так: private sub commandbutton1_click() dim a, b, c as single if (a < b + c) then yes if b < a + c then yes if c < a + b then yes но не знаю как закончить !
Dim a, b, c As Single
If (a<b+c) and (b<a+c) and (c<a+b) Then
MsgBox "Yes"
Else
MsgBox "No"
End If
End Sub