Answer:
Please Find attached c++ code file.
Explanation:
Check if highway is primary or auxiliary.
Use if condition to check if the entered number is in between 0 and 99.If it's true than the highway is primary otherwise it's an auxiliary highway.
Check if highway number is even / odd.
To check if a number is even or odd we use simple modulo formula. In mathematics modulo returns the reminder of a division operation on two numbers.If modulo of a number and 2 is equal to zero than that number is an even number other wise its an odd number.
[tex](Any number ) mod 2 = 0 [/tex]
Find Primary high number for an auxiliary highway
As mentioned in the question last two digits of highway number is the number of primary high.
To Find last two digits of number apply modulo operation on highway number and 100. it will provide last two digits of number specifying our primary highway.