Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

PYTHON Write a program that accepts the lengths of three sides of a triangle as inputs. The program output should indicate whether or not the

PYTHON Write a program that accepts the lengths of three sides of a triangle as inputs. The program output should indicate whether or not the triangle is an equilateral triangle. the grading is based on these : REQUIREMENTS Equilateral Triangle Test 0.00 / 10.00 Obtuse Triangle Test 0.00 / 10.00 Acute Triangle Test 0.00 / 10.00 the closest answer so far is

print("Input lengths of the triangle sides: ")

x = int(input("x: "))

y = int(input("y: "))

z = int(input("z: "))

if x == y == z:

print("Equilateral triangle")

else:

print("Not Equilateral triangle")

but its only 66% of the correct answer please try your best this is for PYTHON

this is what I got n grading:

REQUIREMENTS

Equilateral Triangle Test

0.00 / 10.00

Obtuse Triangle Test

10.00 / 10.00

Acute Triangle Test

10.00 / 10.00

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Design Application Development And Administration

Authors: Mannino Michael

5th Edition

0983332401, 978-0983332404

More Books

Students also viewed these Databases questions

Question

Provide examples of KPIs in Human Capital Management.

Answered: 1 week ago

Question

What are OLAP Cubes?

Answered: 1 week ago