If a user wants to spend more than $200, suggest exclusive suites. If the country is France, also suggest rooms in palaces.
If a user wants to spend more than $250, If the country is Germany. suggest exclusive suites

My code
System.out.println("Enter the country you want to visit: "); //input prompt
String country=in.next();//input
if(country.equals("France")){
System.out.println("I suggest exclusive suites.");
System.out.print("I also suggest rooms in palaces.");
}
else(country.equals("Germany")) {
System.out.println("I suggest exclusive suites.");
/* Executes when the boolean expression 1 is true */
}
}
}
Please find the code below::
Tourist.java
package classes5;
import java.util.Scanner;
public class Tourist {
public static void main(String[] args) {
Scanner in = new
Scanner(System.in);
Scanner inAmt = new
Scanner(System.in);
System.out.println("Enter the
amount you want to spend : "); //input prompt
double amount =
inAmt.nextDouble();
System.out.println("Enter the
country you want to visit : "); //input prompt
String
country=in.next();//input
if(amount>250 &&
country.equalsIgnoreCase("Germany")){
System.out.println("I suggest exclusive suites.");
}else if(amount>200){
System.out.println("I suggest exclusive suites.");
if(country.equalsIgnoreCase("France"))
System.out.print("I also suggest rooms in
palaces.");
}
}
}
![Quick Access # Java EE X @ Console X XE kage <terminated> Tourist [Java Application] C:\Program Files\Java\jre7\bin\javaw.ex](http://img.homeworklib.com/questions/1744dc10-2ac2-11eb-a6f7-27a09349e288.png?x-oss-process=image/resize,w_560)
![Quick Access : Java EE a X Console X XB kagę <terminated> Tourist [Java Application] C:\Program Files\ava jre7\bin\javaw.exe](http://img.homeworklib.com/questions/17afcc20-2ac2-11eb-8126-f11f8312ae26.png?x-oss-process=image/resize,w_560)
If a user wants to spend more than $200, suggest exclusive suites. If the country is...
Can you help me rearrange my code by incorporating switch I'm not really sure how to do it and it makes the code look cleaner. Can you help me do it but still give the same output? Also kindly add an in-line comment on what changes and rearrangement you've done so I can understand what's going on. import java.util.ArrayList; import java.util.Scanner; public class Bank { /** * Add and read bank information to the user. * @param arg A string,...
Can you help me rearrange my code to make it look cleaner but still give the same output? Also kindly add an in-line comment on what changes and rearrangement you've done so I can understand what's going on. import java.util.ArrayList; import java.util.Scanner; public class Bank { /** * Add and read bank information to the user. * @param arg A string, double and int array containing * the command line arguments. * @exception Any exception * @return an arraylsit of...
this needs to be in Java:
use a comparator class which
is passed into the sort method that is available on the
ArrayList.
import java.util.Scanner;
public class Assign1{
public static
void main(String[] args){
Scanner reader = new Scanner (System.in);
MyDate todayDate = new MyDate();
int choice = 0;
Library library = new Library();
while (choice != 6){
displayMainMenu();
if (reader.hasNextInt()){
choice = reader.nextInt();
switch(choice){
case 1:
library.inputResource(reader, todayDate);
break;
case 2:
System.out.println(library.resourcesOverDue(todayDate));
break;
case 3:
System.out.println(library.toString());
break;
case 4:
library.deleteResource(reader,...
This is an additional assignment from the chapter on the Java Collections Framework. Suppose you buy 100 shares of a stock at $12 per share, then another 100 at $10 per share, then you sell 150 shares at $15. You have to pay taxes on the gain, but exactly what is the gain? In the United States, the FIFO rule holds: You first sell all shares of the first batch for a profit of $300, then 50 of the shares...
Problem Statement: A company intends to offer various versions of roulette game and it wants you to develop a customized object-oriented software solution. This company plans to offer one version 100A now (similar to the simple version in project 2 so refer to it for basic requirements, but it allows multiple players and multiple games) and it is planning to add several more versions in the future. Each game has a minimum and maximum bet and it shall be able...
Information About This Project In the realm of database processing, a flat file is a text file that holds a table of records. Here is the data file that is used in this project. The data is converted to comma separated values ( CSV ) to allow easy reading into an array. Table: Consultants ID LName Fee Specialty 101 Roberts 3500 Media 102 Peters 2700 Accounting 103 Paul 1600 Media 104 Michael 2300 Web Design...
Programming Project 3 See Dropbox for due date Project Outcomes: Develop a Java program that uses: Exception handling File Processing(text) Regular Expressions Prep Readings: Absolute Java, chapters 1 - 9 and Regular Expression in Java Project Overview: Create a Java program that allows a user to pick a cell phone and cell phone package and shows the cost. Inthis program the design is left up to the programmer however good object oriented design is required. Project Requirements Develop a text...
Activity: Writing Classes Page 1 of 10 Terminology attribute / state behavior class method header class header instance variable UML class diagram encapsulation client visibility (or access) modifier accessor method mutator method calling method method declaration method invocation return statement parameters constructor Goals By the end of this activity you should be able to do the following: > Create a class with methods that accept parameters and return a value Understand the constructor and the toString method of a class...
create a new Java application called "WeightedAvgDataAnalyzer" (without the quotation marks), that modifies the DataAnalyzer.java in Horstmann Section 7.5, pp. 350-351 according to the specifications below. The input file should be called 'data.txt' and should be created according to the highlighted instructions below. Note that even though you know the name of the input file, you should not hard-code this name into your program. Instead, prompt the user for the name of the input file. The input file should contain...
could you please help me with this problem, also I
need a little text so I can understand how you solved the
problem?
import java.io.File; import java.util.Scanner; /** *
This program lists the files in a directory specified by * the
user. The user is asked to type in a directory name. * If the name
entered by the user is not a directory, a * message is printed and
the program ends. */ public class DirectoryList { public static...