PROGRAMMING AND CODE


Assignemnt #38

Code

/// Name: Justin Li
/// Period 7
/// Program Name: SpaceBoxing
/// File Name: SpaceBoxing.java
/// Date Finished: 10/29/15

import java.util.Scanner;

class SpaceBoxing {
  
    public static void main(String[]args) {
      
        Scanner keyboard = new Scanner(System.in);
        
        int planet;
        double weight;
        
        System.out.print("Please enter you current earth weight:");
        weight = keyboard.nextDouble();
        
        System.out.println("I have information for the following planets:");
        System.out.println("    1. Venus    2. Mars    3. Jupiter   ");
        System.out.println("    4. Saturn   5. Uranus  6. Neptune   ");
        System.out.println("");
        System.out.print("Which planet are you visiting? ");
        planet = keyboard.nextInt();
        
        
        
        if ( planet == 1  )
        {
        System.out.println("Your weight would be " + (weight*0.78) + " lbs on that planet.");
        }
        else if ( planet == 2 )
        {
        System.out.println("Your weight would be " + (weight*0.39) + " lbs on that planet.");
        }
        else if ( planet == 3 )
        {
        System.out.println("Your weight would be " + (weight*2.65) + " lbs on that planet.");
        }
        else if ( planet == 4 )
        {
        System.out.println("Your weight would be " + (weight*1.17) + " lbs on that planet.");
        }
        else if ( planet == 5 )
        {
        System.out.println("Your weight would be " + (weight*1.05) + " lbs on that planet.");
        }
        else if ( planet == 6 )
        {
        System.out.println("Your weight would be " + (weight*1.23) + " lbs on that planet.");
        }
        
            
    }
}
    

Picture of the output

Assignment 1