Primary U.S. interstate highways are numbered 1-99. Odd numbers (like the 5 or 95) go north/south, and evens (like the 10 or 90) go east/west. Auxiliary highways are numbered 100-999, and service the primary highway indicated by the rightmost two digits. Thus, the 405 services the 5, and the 290 services the 90. Your program will prompt the user to type a highway number ("Please enter a highway number, Ex: 65: "), read in the number typed by the user, and print out whether it is a primary or auxiliary highway. If auxiliary, indicate what primary highway it serves. Also your program must indicate if the (primary) highway runs north/south or east/west, that it is an invalid number if not between 0 and 999. Ex: If the input is: 90 the output is: The 90 is primary, going east/west. Ex: If the input is: 290 the output is: The 290 is auxiliary, serving the 90, going east/west. Ex: If the input is: 0 the output is: 0 is not a valid interstate highway number. #include using namespace std; int main() { int highwayNumber; cout << "Please enter a highway number, Ex: 65: "; //prompt user cin >> highwayNumber; /* Type your code here. */ return 0; }
Max Function
Statistical function is of many categories. One of them is a MAX function. The MAX function returns the largest value from the list of arguments passed to it. MAX function always ignores the empty cells when performing the calculation.
Power Function
A power function is a type of single-term function. Its definition states that it is a variable containing a base value raised to a constant value acting as an exponent. This variable may also have a coefficient. For instance, the area of a circle can be given as:
Primary U.S. interstate highways are numbered 1-99. Odd numbers (like the 5 or 95) go north/south, and evens (like the 10 or 90) go east/west. Auxiliary highways are numbered 100-999, and service the primary highway indicated by the rightmost two digits. Thus, the 405 services the 5, and the 290 services the 90.
Your program will prompt the user to type a highway number ("Please enter a highway number, Ex: 65: "), read in the number typed by the user, and print out whether it is a primary or auxiliary highway. If auxiliary, indicate what primary highway it serves.
Also your program must indicate if the (primary) highway runs north/south or east/west, that it is an invalid number if not between 0 and 999.
Ex: If the input is:
90
the output is:
The 90 is primary, going east/west.
Ex: If the input is:
290
the output is:
The 290 is auxiliary, serving the 90, going east/west.
Ex: If the input is:
0
the output is:
0 is not a valid interstate highway number.
#include <iostream>
using namespace std;
int main() {
int highwayNumber;
cout << "Please enter a highway number, Ex: 65: "; //prompt user
cin >> highwayNumber;
/* Type your code here. */
return 0;
}
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 2 images