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

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 17:30
Working on this program in python 3.7: a year in the modern gregorian calendar consists of 365 days. in reality, the earth takes longer to rotate around the sun. to account for the difference in time, every 4 years, a leap year takes place. a leap year is when a year has 366 days: an extra day, february 29th. the requirements for a given year to be a leap year are: 1) the year must be divisible by 42) if the year is a century year (1700, 1800, the year must be evenly divisible by 400some example leap years are 1600, 1712, and 2016.write a program that takes in a year and determines whether that year is a leap year.ex: if the input is 1712, the output is: 1712 is a leap year. ex: if the input is 1913, the output is: 1913 is not a leap year. your program must define and call the function isleapyear(useryear). the function should return true if the input year is a leap year and false otherwise.
Answers: 1
question
Computers and Technology, 23.06.2019 11:30
In cell h5 enter a formula that will calculate the percentage of attendees that went to the altamonte springs job fair in 2018.
Answers: 1
question
Computers and Technology, 23.06.2019 21:20
For positive constants a and b, the force between two atoms in a molecule is given f(r) = −a r2 + b r3 , where r > 0 is the distance between the atoms. note: a and b are upper case letters. (a) find f '(r) = (b) find the critical point for f(r). r = (c) find f ''(r) = (d) find the value of r so that f ''(r) = 0.
Answers: 1
question
Computers and Technology, 24.06.2019 13:00
In a heat transfer course, we can derive the equation for the temperature distribution in a flat rectangular plate. in this example, we will look at a plate at steadystate with three sides being held at t1, and one side held at t2. the temperature for any location on the plate, t(x,y), can be calculated by where create a function (prob3_5) that will take inputs of vectors x and y in feet, scalar n, scalars l and w in feet and scalars t1 and t2 in degrees fahrenheit. it will output a matrix t which is the temperature of each x and y locations. t will have the number of columns equal to the number of elements in x and rows equal to the number of elements in y. though this can be done without loops (perhaps more efficiently), your program must use a nested loop.
Answers: 2
You know the right answer?
In this homework you will print details about a US Interstate Highway given that highway's number I...
Questions
question
Spanish, 11.11.2020 18:10
Questions on the website: 13722359