Question: Create an application named Percentages whose main() method holds two double variables. Assign values to the variables. Pass both variables to a method named computePercent()

Create an application named Percentages 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 percent of 5.0. Then call the method a second time, passing the values in reverse order.

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 } }

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!