Respuesta :
Answer:
import java.util.Scanner;
public class ANot {
public static void main(String[] args) {
System.out.println("Please enter a number (1-10)");
Scanner input = new Scanner(System.in);
int num = input.nextInt();
switch (num){
case 1:
System.out.println("I");
break;
case 2:
System.out.println("II");
break;
case 3:
System.out.println("III");
break;
case 4:
System.out.println("IV");
break;
case 5:
System.out.println("V");
break;
case 6:
System.out.println("VI");
break;
case 7:
System.out.println("VII");
break;
case 8:
System.out.println("VIII");
break;
case 9:
System.out.println("IX");
break;
case 10:
System.out.println("X");
break;
default:
System.out.println("Invalid Number");
}
}
}
Explanation:
- Import the Scanner Class to prompt and receive users input
- Receive and save the value entered by user into a variable.
- Use the switch statement in java to test each case (1-10) and print the equivalent roman numeral version
- Use the default statement to hand the error condition when a number is outside of the range
In this exercise we have to use the knowledge of computational language in JAVA, so we have that code is:
It can be found in the attached image.
So, to make it easier, the code in JAVA can be found below:
import java.util.Scanner;
public class ANot {
public static void main(String[] args) {
System.out.println("Please enter a number (1-10)");
Scanner input = new Scanner(System.in);
int num = input.nextInt();
switch (num){
case 1:
System.out.println("I");
break;
case 2:
System.out.println("II");
break;
case 3:
System.out.println("III");
break;
case 4:
System.out.println("IV");
break;
case 5:
System.out.println("V");
break;
case 6:
System.out.println("VI");
break;
case 7:
System.out.println("VII");
break;
case 8:
System.out.println("VIII");
break;
case 9:
System.out.println("IX");
break;
case 10:
System.out.println("X");
break;
default:
System.out.println("Invalid Number");
}
}
}
See more about JAVA at brainly.com/question/26104476
