ramming Exercise 2.6 Instructions momentum.py 1 # Modify the following code The kinetic energy of a moving object is 3 # Request the input 4 mass = float(input(" mass: ")) 5 velocity = given by the formula KE = ½my? where m is the object's mass and v is its velocity. float(input(" velocity: ")) 6. 7 # Compute the results Modify the program you created in Project 5 so that it prints the object's 8 momentum = mass * velocity 6. kinetic energy as well as its momentum. 10 # Display the results 11 Below is an example of the progam input 12 and output: Mass: 5 Velocity: 2.5 The object's momentum is 12.5 The object's kinetic energy is 15 Grading

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter5: Control Structures Ii (repetition)
Section: Chapter Questions
Problem 27PE
icon
Related questions
icon
Concept explainers
Question
ramming Exercise 2.6
Instructions
momentum.py
1 # Modify the following code
2
The kinetic energy of a moving object is
3 # Request the input
given by the formula KE = ½mv2 where m
float(input(" mass: "))
float(input(" velocity: "))
4 mass =
is the object's mass and v is its velocity.
5 velocity =
6.
7 # Compute the results
8 momentum = mass * velocity
Modify the program you created in
Project 5 so that it prints the object's
6.
kinetic energy as well as its momentum.
10 # Display the results
11
Below is an example of the progam input
12
and output:
Mass: 5
Velocity: 2.5
The object's momentum is 12.5
The object's kinetic energy is 15
Grading
Transcribed Image Text:ramming Exercise 2.6 Instructions momentum.py 1 # Modify the following code 2 The kinetic energy of a moving object is 3 # Request the input given by the formula KE = ½mv2 where m float(input(" mass: ")) float(input(" velocity: ")) 4 mass = is the object's mass and v is its velocity. 5 velocity = 6. 7 # Compute the results 8 momentum = mass * velocity Modify the program you created in Project 5 so that it prints the object's 6. kinetic energy as well as its momentum. 10 # Display the results 11 Below is an example of the progam input 12 and output: Mass: 5 Velocity: 2.5 The object's momentum is 12.5 The object's kinetic energy is 15 Grading
Expert Solution
Given

The kinetic energy of a moving object is given by the formula KE = ½mv2 where m is the object’s mass and v is its velocity.

Modify the program you created in Project 5 so that it prints the object’s kinetic energy as well as its momentum.

trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Operators
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr