Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions Icon

Related questions

bartleby

Concept explainers

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.
expand button
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
Check Mark
Knowledge Booster
Background pattern image
Computer Science
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.
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education