Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Programming language is java. Primary U . S . interstate highways are numbered 1 - 9 9 . Odd numbers ( like the 5 or

Programming language is java.
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, I-405 services I-5, and I-290 services I-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 auxiliary, indicate what primary highway it serves. Also indicate if the (primary) highway runs north/south or east/
west.
this is the code I have so far.
src > main > java > Main.java
public static void main(String[] args)
{
Scanner scnr = new Scanner(System. in);
int highwayNumber;
int primaryNumber;
boolean isEven;
highwayNumber = scnr.nextInt();
primaryNumber = highwayNumber %100;?? this will be the last two digits
isEven highwayNumber %2; // this will be true if the number is even
if ((highwayNumber 1)||(highwayNumber >999))
{
System.out.println(highwayNumber +" is not a valid interstate highway number.");
}
else if ((highwayNumber >=1)||(highwayNumber =99))
{
if (isEven == true )
{
System.out.println("I-"+ highwayNumber +" is primary, going east/west.");
}
else
{
System.out.println("I-"+ highwayNumber +" is primary, going north/south.");
}
}
else
{
if (primaryNumber =0)
{
System.out.println(highwayNumber +" is not a valid interstate highway number.");
}
else if (primaryNumber )
{
System.out.println("I-"+ highwayNumber +" is auxiliary, serving I-"+ primaryNumber +", going east/west.");
}
else
{
System.out.println("I-"+ highwayNumber +" is auxiliary, serving I-"+ primaryNumber +", going north/south.");
}
}
}
}
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Accounting

Authors: Peter J. Eisen

5th Edition

0764135473, 9780764135477

Students also viewed these Databases questions