1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
bixtya [17]
3 years ago
13

Write a program that accepts the lengths of three sides of a triangle as an input from the user: A, B, C

Computers and Technology
1 answer:
nasty-shy [4]3 years ago
8 0

Answer:

The program in Python is as follows:

A = int(input("A: "))

B = int(input("B: "))

C = int(input("C: "))

while A<=0 or B <= 0 or C <= 0:

   A = int(input("A: "))

   B = int(input("B: "))

   C = int(input("C: "))

print("Valid inputs")

Explanation:

Get input for A, B and C

<em>A = int(input("A: "))</em>

<em>B = int(input("B: "))</em>

<em>C = int(input("C: "))</em>

The loop is repeated until inputs for A, B and C are above 0

while A<=0 or B <= 0 or C <= 0:

Get input for A, B and C

<em>    A = int(input("A: "))</em>

<em>    B = int(input("B: "))</em>

<em>    C = int(input("C: "))</em>

Print valid inputs when user inputs are correct

print("Valid inputs")

You might be interested in
What is communication​
IgorLugansk [536]

Answer:

it is when u talk to someone

6 0
4 years ago
Read 2 more answers
What is the name that is given to a symbiotic relationship in which both species benefit?
avanturin [10]
Mutualism.
An example of mutualism is where insects pollinate plants, then the plants provide nectar.
7 0
4 years ago
Read 2 more answers
Which type of memory is used as the working storage space of the computer?
natta225 [31]
Internal memory is used as the working storage space of the computer
4 0
3 years ago
What best describes the purpose of the Recycle Bin (Microsoft Windows) and Trash (Apple Mac) features?
frez [133]

Answer:

Used for if you accidentally delete something or if you later want to retrieve something.

7 0
3 years ago
Read 2 more answers
You can italicize a word by selecting it and clicking the italics icon. what keyboard shortcut could you use instead of clicking
Zina [86]
D. Control I for Microsoft word
3 0
3 years ago
Other questions:
  • 3 thing I learned in ICT
    7·1 answer
  • what is the gpa(grade point average) you need to have or you get kicked out of robotics for middle school?
    7·2 answers
  • Swiping up with three fingers on mac os x launches what?
    8·1 answer
  • To close the ____ view, click File on the Ribbon or click the preview of the document in the Info gallery to return to the docum
    9·1 answer
  • A research team is studying parallel computing. They want to run parallel processes without having to use multiple processors. H
    15·2 answers
  • Which of the following is a term used for the permanent record of activities performed on the Internet?
    11·1 answer
  • Online databases allow you access to material you may not be able to find when using popular search engines like Google. Select
    10·1 answer
  • Which of the following statements invokes the GetDiscount function, passing it the contents of two Decimal variables named decSa
    7·1 answer
  • Digital _________ Line is a family of point-to-point technologies designed to provide high-speed data transmission over traditio
    14·1 answer
  • Derive an expression for the boolean function L(a,c) whose output is 1 when the light would be on. Note that two of the switches
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!