1-22 pdf Open with Google Docs Problem #1: 35 pts] Write a program to calculate the estimated engine horsepower of a car based on the weight of the car (in pound), and the speed at which the vehicle finished a quarter mile (miles per hour). The formula is as follows: HorsePower = weight*(speed/234) The program displays the horsepower value with two digits after the decimal point. It also prints the message “Your car is super, drive safe", if the car horsepower is greater than or equal to 400 hp. Otherwise, it prints "Your car is nice, have a safe family trip". Sample run 1: Enter the car weight: 5000 Enter the car speed when finishing quarter mile: 70 The estimated engine power i6 133.84 horsepower Your car is nice, have a safe fanily trip Sample run 2: Enter the car weight: 7000 Enter the car speed when finishing guarter mile: 100 The estimated engine power Es 546.32 horsepower Your car is super, drive sae ctiv Page 3/ 4 o to: carch 64 F Clear 近
Types of Loop
Loops are the elements of programming in which a part of code is repeated a particular number of times. Loop executes the series of statements many times till the conditional statement becomes false.
Loops
Any task which is repeated more than one time is called a loop. Basically, loops can be divided into three types as while, do-while and for loop. There are so many programming languages like C, C++, JAVA, PYTHON, and many more where looping statements can be used for repetitive execution.
While Loop
Loop is a feature in the programming language. It helps us to execute a set of instructions regularly. The block of code executes until some conditions provided within that Loop are true.
Step by step
Solved in 4 steps with 2 images