subject

In this homework you will print details about a US Interstate Highway given that highway's number Interstate Highways
US Interstate Highways (the ones with blue shield icons, like this) are given very deliberate numbers that reflect their physical characteristics. Knowing an interstate's number can tell you a lot about it: whether it's a large or small highway, what direction it runs, and more! Some simple math will derive facts about an interstate given its number:
1. Interstates are either primary or auxiliary routes. A primary route has a one or two-digit number, whereas an auxiliary route has a three-digit number
2. Primary routes have: o an orientation, an odd route number indicates a north-south orientation, and an even number indicates an east-west orientation. Example: Interstate 5 runs north-south, Interstate 10 runs east- west. o a size a route number that is a multiple of 5 is a long-distance arterial highway. Example: Interstates 5, 10, 15, etc. are long- distance arterial highways, but not 8, 11, 14, etc.
3. Auxiliary routes have: . a type: if the first digit of the route number is odd, the auxiliary highway is a spur highway. If the first digit of the route number is even, the highway is a loop highway. Example: 110 is a spur highway. 405 is a loop highway. . a parent every auxiliary highway has a "parent" primary highway that it connects to. The parent highway number is the last two digits of the auxiliary number. Example: the parent of 605 is 5; the parent of 710 is 10.
Easy!
Assignment
Write a Python program to:
1. Ask the user to input an integer highway number. You may assume the user always enters a single integer value; for example, if the user is interested in Interstate 405, they will enter 405. You must validate the value of this input: ensure that the value is between 0 and 999 inclusive, and continually loop and ask the user for a highway number until they enter one that matches this requirement. Do not proceed with the rest of the program until you are sure the user gave a number between 0 and 999.
2. Determine (but don't print... yet) whether the highway is primary or auxiliary.
3. Print a summary of the highway's information (SEE EXAMPLE OUTPUT):
1. For primary highways, include whether the highway is a long-distance arterial, then give its orientation.
2. For auxiliary highways, include the auxiliary type and its parent highway number.
4. Repeat steps 1-3 until the user gives a highway number of O. Do not print any information about this highway, a value of 0 triggers the end of the program
Example output
User input is in italics:
Please enter a US Interstate Highway route number: -1
Please enter a US Interstate Highway route number: 5 Interstate 5 is a long-distance arterial highway oriented north-south.
Please enter a US Interstate Highway route number: 1000
Please enter a US Interstate Highway route number: 405 Interstate 405 is a loop highway of Interstate 5.
Please enter a US Interstate Highway route number: 94 Interstate 94 is oriented east-west.
Please enter a US Interstate Highway route number: 0

ansver
Answers: 1

Other questions on the subject: Computers and Technology

image
Computers and Technology, 22.06.2019 20:40, broang23
Write a program that begins by reading in a series of positive integers on a single line of input and then computes and prints the product of those integers. integers are accepted and multiplied until the user enters an integer less than 1. this final number is not part of the product. then, the program prints the product. if the first entered number is negative or 0, the program must print “bad input.” and terminate immediately. next, the program determines and prints the prime factorization of the product, listing the factors in increasing order. if a prime number is not a factor of the product, then it
Answers: 2
image
Computers and Technology, 23.06.2019 02:30, reyne36
Rafael needs to add a title row to a table that he has inserted in word. what should he do? use the alignment options. use the merge and center option for all the cells in the top row. use the merge and center option on the first two cells in the top row. none of the above
Answers: 3
image
Computers and Technology, 23.06.2019 13:30, alannaamarriee
Jace needs to answer a question on square roots to win a quiz. how can he use a spreadsheet to find the square root of 786? a. use the functions round and count b. create a table and chart c. use the function sqrt d. use the function now
Answers: 3
image
Computers and Technology, 23.06.2019 15:30, Dweath50
The processing of data in a computer involves the interplay between its various hardware components.
Answers: 1
You know the right answer?
In this homework you will print details about a US Interstate Highway given that highway's number I...

Questions in other subjects:

Konu
Mathematics, 04.02.2020 13:59