Question: Modify the Percentages application whose main() method holds two double variables. Assign values to the variables. Pass both variables to a method named computePercent() that
Modify the Percentages application whose main() method holds two double variables. Assign values to the variables. Pass both variables to a method named computePercent() that displays the two values and the value of the first number as a percentage of the second one. For example, if the numbers are 2.0 and 5.0, the method should display a statement similar to 2.0 is 40.0 percent of 5.0. Then call the method a second time, passing the values in reverse order. For testing use the values 2.0 and 5.0. An example of the program is shown below: 2.0 is 40.0 percent of 5.0 5.0 is 250.0 percent of 2.0

2 3 Percentages.java + 1 public class Percentages { public static void main (String args[]) { // Write your code here } public static void computePercent (double x, double y) { // Write your code here } 8} 4 5 6 7 COO
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
