Answered step by step
Verified Expert Solution
Question
1 Approved Answer
A simple currency converter. It multiplies a given rate by a given amount to get a converted amount public class CurrencyConverter //instance variables private double
A simple currency converter. It multiplies a given rate by a given amount to get a converted amount public class CurrencyConverter //instance variables private double rate ; //conversion rate Constructor method: initialize rate with a given rate (arate) @param rate the conversion rate public Currency Converter (double aRate) // -----------Start below here. To do: approximate lines of code - 1 // 1. fill in this constructor to set the instance variable rates aRate; + * Converts given amount according to rate. baram amount the amount to convert @return the product of rate and amount public double convert(double amount) na anderin ----------- Start below here. To do: approximate lines of code = 1 11. fill in this method to return product of return rate amount: -------- End here. Please do not remove this comment. Reminder: // Normally the scanner is based on System.in, //Scanner scanner = new Scanner(System.in); //but for predictability we set the input to a fixed sequence: Scanner scanner = new Scanner("0.79447 100 20 88.88 9"); System.out.print("Conversion factor (euros per dollar): "); // We could use scanner.nextDouble() here, but this is an example //of using parseDouble, which you need in the next loop. String input = scanner.next(); double rate - Double.parseDouble(input); System.out.println(rate); 1 ............ - Start below here. To do: approximate lines of code = 1 11. make the CurrencyConverter object based on the rate ----- End here. Please do not remove this comment. Reminders no changes outside th System.out.println(input); echo the input 1/----------Start below here. To do: approximate lines of code - 7 1 1. write a while loop where the condition is that input is not " 1/2. use parseDouble to get the dollars amount: 1/3. use the converter object to convert the dollars to pro preced region (Hint: use printf): 1/4 print the dollars and eure in the style shown in the 115. prompt for the next input: Dollar value (q to quic): 1/6. read the next input ; 117. echo the input (1.e., print it out! 1................ - End here. Please do not remove this content Reminder no changes outside the todo regions
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started