Question: 5.14 5.1 Write a program that takes the given input to create a packing list for a trip. Call the various methods to complete the

5.14 5.1

Write a program that takes the given input to create a packing list for a trip. Call the various methods to complete the message. Your intro will read "You have an upcoming trip! Here are the things you will need:", you will print "You will need your wallet and phone." for every trip, you will only print "You will need a jacket." when the trip will be cold, and will only print "You will need a passport." when the trip is international.

import java.util.Scanner;

public class LabProgram { public static void main(String[] args) { Scanner input = new Scanner(System.in);

}//end main public static void essentials(){ System.out.println("You will need your wallet and phone."); }//end passport essentials public static void clothes(){ System.out.println("You will need a jacket."); }//end clothes method public static void passport(){ System.out.println("You will need a passport."); }//end passport method public static void intro(){ System.out.println("You have an upcomng trip!"); System.out.println("Here are the things you will need:"); }//end intro method }//end class

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!