Lab 3 Decisions
Here is a table that describes the planets in our solar system numbered according to their distance from the sun:
1. Mercury2. Venus3. Earth4. Mars5. Jupiter6. Saturn7. Uranus8. 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.
`javaimport 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
}
}`

![[Solved] SOLVED: Lab 3 Decisions Planets](https://assignmentchef.com/wp-content/uploads/2022/08/downloadzip.jpg)

![[Solved] Assignment 3- C++ Pthreads program](https://assignmentchef.com/wp-content/uploads/2022/08/downloadzip-1200x1200.jpg)
Reviews
There are no reviews yet.