accept input from the user, compute the output via a mathematical formula, and print a result using reasonable formatting. • Prompt the user for the radius of the lake. Accept the radius from the user. You are guaranteed that this radius will be an integer. You will learn how to accept numbers as input very soon. • Print out the area of the half-circular lake. A sample run might look like this: Enter the radius of the lake in meters: 9 The area of the lake is 127.2348 m^2.

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 19PE
icon
Related questions
Question
accept input from the user, compute the output via a mathematical formula,
and print a result using reasonable formatting.
• Prompt the user for the radius of the lake.
Accept the radius from the user. You are guaranteed that this radius will be an integer. You will learn
how to accept numbers as input very soon.
• Print out the area of the half-circular lake.
A sample run might look like this:
Enter the radius of the lake in meters: 9
The area of the lake is 127.2348 m^2.
Remember that the area of a circle is given by a = Tr
tr. For purposes of this program, you may assume that
T = 3.1416. (Hint: Make this a constant, and you only ever have to type it once...)
Program successfully runs
o If your program doesn't run, you get zero points but a chance to resubmit it.
• Program prints out the right value
o I will not penalize you for rounding errors.
• Good formatting of input and output
• Readable and well-formatted program code
Write your program in IDLE 3; anything 3.7 or above should do.
In this and every program, include a header comment with your name, the name of the program (in this case,
lakearea.py), and a very short description of what it does and why you wrote it. Also write comments for
every "paragraph" of code, as we will shortly discuss in class.
Transcribed Image Text:accept input from the user, compute the output via a mathematical formula, and print a result using reasonable formatting. • Prompt the user for the radius of the lake. Accept the radius from the user. You are guaranteed that this radius will be an integer. You will learn how to accept numbers as input very soon. • Print out the area of the half-circular lake. A sample run might look like this: Enter the radius of the lake in meters: 9 The area of the lake is 127.2348 m^2. Remember that the area of a circle is given by a = Tr tr. For purposes of this program, you may assume that T = 3.1416. (Hint: Make this a constant, and you only ever have to type it once...) Program successfully runs o If your program doesn't run, you get zero points but a chance to resubmit it. • Program prints out the right value o I will not penalize you for rounding errors. • Good formatting of input and output • Readable and well-formatted program code Write your program in IDLE 3; anything 3.7 or above should do. In this and every program, include a header comment with your name, the name of the program (in this case, lakearea.py), and a very short description of what it does and why you wrote it. Also write comments for every "paragraph" of code, as we will shortly discuss in class.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Constants and Variables
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