Starting from:

$15

 Lab 3 - Decisions - Planets


Lab 3 - Decisions

Here is a table that describes the planets in our solar system numbered according to their distance from the sun:

1. Mercury
2. Venus
3. Earth
4. Mars
5. Jupiter
6. Saturn
7. Uranus
8. Neptune

Use the code below to input an integer from the user. Write a switch statement that examines the integer and prints out the name of the corresponding planet. Print an error message if an invalid integer is entered.

```java
import java.util.Scanner;

public class Planets

{

public static void main(String[] args)

{

Scanner scan = new Scanner(System.in);

System.out.print("Enter a planet number from the sun: ");

int planet = scan.nextInt();

// Your code goes here …

}

}
```

More products