Home / Expert Answers / Computer Science / in-c-3-23-lab-interstate-highway-numbers-primary-u-s-interstate-highways-are-numbered-1-99-odd-nu-pa449

(Solved): In C 3.23 LAB: Interstate highway numbers Primary U.S. interstate highways are numbered 1-99. Odd nu ...



In C

3.23 LAB: Interstate highway numbers
Primary U.S. interstate highways are numbered 1-99. Odd numbers (like the 5 or 95 ) go n
3.23 LAB: Interstate highway numbers 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, \( 1.405 \) services \( 1-5 \), and \( 1-290 \) services 1.90. Note 200 is not a valid auxiliary highway because 00 is not a valid primary highway number. Given a highway number, indicate whether it is a primary or auxiliary highway. If auxaliary, indicate what primary highway it serves, Also indicate if the (primary) highway runs north/south or east/west. Ex. If the input is: 90 the output is: Ex If the input is: 290 the output in:


We have an Answer from Expert

View Expert Answer

Expert Answer


SOLUTION #include void highwayDirection(int highwayNum){ //even highway number direction if(highwayNum%2==0){ printf(", going east/west.");
We have an Answer from Expert

Buy This Answer $5

Place Order

We Provide Services Across The Globe