파이썬에서 삼각형 결정을 수행하는 방법

爱喝马黛茶的安东尼
풀어 주다: 2019-06-25 10:47:41
원래의
10602명이 탐색했습니다.

파이썬에서 삼각형 결정을 수행하는 방법

파이썬에서 삼각형 결정을 수행하는 방법은 무엇입니까? 다음은 구체적인 예입니다.

관련 권장 사항: "Python 비디오 튜토리얼"

예: # 🎜🎜#

a = int(input("The length of the side a = "))
b = int(input("The length of the side b = "))
c = int(input("The length of the side c = "))
if a != b and b != c and a != c:
    print("This is Scalene") #不规则三角形
elif a == b and b == c:
    print("This is an Equilateral") #等边三角形
else:
    print("This is Isosceles") #等腰三角形
로그인 후 복사

결과는 다음과 같습니다:

The length of the side a = 3
The length of the side b = 4
The length of the side c = 5
This is Scalene
The length of the side a = 3
The length of the side b = 3
The length of the side c = 3
This is an Equilateral
The length of the side a = 3
The length of the side b = 3
The length of the side c = 4
This is Isosceles
로그인 후 복사

위 내용은 파이썬에서 삼각형 결정을 수행하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿