Create an application named ArithmeticMethods whose main() method holds two inte
ID: 664018 • Letter: C
Question
Create an application named ArithmeticMethods whose main() method holds two integer variables. Assign values to the variables. In turn, pass each value to methods named displayNumberPlus10(), displayNumberPlus100(), and displayNumberPlus1000(). Create each method to perform the task its name implies. Save the application as ArithmeticMethods.java. Submit code below.
Paste your Code Answer here:
Modify the ArithmeticMethods class to accept the values of the two integers from a user at the keyboard. Save the file as ArithmeticMethods2.java. Submit code below.
Paste your Code Answer here:
Create an application named Percentages whose main() method holds two double variables. Assign values to the variables. Pass both the 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% of 5.0.” Then call the method a second time, passing the values in reverse order. Save the application as Percentages.java. Submit code below.
Paste your Code Answer here:
Modify the Percentages class to accept the values of the two doubles from a user at the keyboard. Save the file as Percentages2.java. Submit the code below.
Complie without errors & output is correct.
Explanation / Answer
1) class AirthmeticMethods
{
public static void main(String arg[])
{
int a=10,b=10;
dispalyNumberPlus10(a,b);
dispalyNumberPlus100(a,b);
dispalyNumberPlus1000(a,b);
}
public static void dispalyNumberPlus10(int a,int b)
{
System.out.println("a + 10="+ (a+10));
System.out.println("b + 10="+ (b+10));
}
public static void dispalyNumberPlus100(int a,int b)
{
System.out.println("a + 100="+ (a+100));
System.out.println("b + 100="+ (b+100));
}
public static void dispalyNumberPlus1000(int a,int b)
{
System.out.println("a + 1000="+ (a+1000));
System.out.println("b + 1000="+ (b+1000));
}
}
2)
import java.util.Scanner;
class AirthmeticMethods2
{
public static void main(String arg[])
{
int a,b;
System.out.println("Enter Two Numbers");
Scanner in =new Scanner(System.in);
a=in.nextInt();
b=in.nextInt();
dispalyNumberPlus10(a,b);
dispalyNumberPlus100(a,b);
dispalyNumberPlus1000(a,b);
}
public static void dispalyNumberPlus10(int a,int b)
{
System.out.println("a + 10="+ (a+10));
System.out.println("b + 10="+ (b+10));
}
public static void dispalyNumberPlus100(int a,int b)
{
System.out.println("a + 100="+ (a+100));
System.out.println("b + 100="+ (b+100));
}
public static void dispalyNumberPlus1000(int a,int b)
{
System.out.println("a + 1000="+ (a+1000));
System.out.println("b + 1000="+ (b+1000));
}
}
3)
class Percentages
{
public static void main(String arg[])
{
double a=10,b=20;
computePercentage(a,b);
computePercentage(b,a);
}
public static void computePercentage(double a,double b)
{
System.out.println("a ="+ a);
System.out.println("b ="+ b);
double c=(a/b)*100;
System.out.println(a +"is " +c+"% of "+b);
}
}
4)
import java.util.Scanner;
class Percentages2
{
public static void main(String arg[])
{
double a,b;
System.out.println("Enter Two Numbers");
Scanner in =new Scanner(System.in);
a=in.nextDouble();
b=in.nextDouble();
computePercentage(a,b);
computePercentage(b,a);
}
public static void computePercentage(double a,double b)
{
System.out.println("a ="+ a);
System.out.println("b ="+ b);
double c=(a/b)*100;
System.out.println(a +"is " +c+"% of "+b);
}
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.