Question
import java.lang.Math; public class BonusBug04 { public static void main(String args[]) { Scanner keyboard = new Scanner(System.in); Double power,squareRoot,num4,rounded; int num1,num2,num3,maximumValue,minimumValue; System.out.println(Enter a integer
import java.lang.Math;\ public class BonusBug04\ {\ public static void main(String args[])\ {\ \ Scanner keyboard = new Scanner(System.in);\ Double power,squareRoot,num4,rounded;\ int num1,num2,num3,maximumValue,minimumValue;\ System.out.println("Enter a integer value: ");\ num1 = keyboard.nextInt();\ System.out.println("Enter a integer value: ");\ num2 = keyboard.nextInt();\ System.out.println("Enter a integer value: ");\ num3 = keyboard.nextInt();\ System.out.println("Enter a double value: ");\ num4 = keyboard.nextDouble();\ \ /* pow method will return the value of argument 1 which is raised to the power of argument 2. What is the correct syntax for 2 raised to the power of 3 to get the result of 8\ */\ power = Math.pow(num1, num2);\ System.out.println("The power of " + num1 + " and " + num2 + " is : " + power);\ \ /* max method will return the maximum value of two arguments\ */\ maximumvalue = Math.max(num1,num2);\ System.out.println("The maximum value of " - num1 + " and " + num2 + " is : " + maximumValue);\ \ /* min method will return the maximum value of two arguments\ */\ minimumValue = Math.minimum(num1,num2);\ System.out.println("The minimum value of " + num1 + " and " + num2 + " is : " + minimumValue);\ \ /* Squareroot method will return the double value of a double argument\ */\ squareroot= Math.sqrt(num3);\ System.out.println("The square root value of " + num3 + " is : " + squareRoot);\ \ /* round method will return the closet value of the number without decimal places\ */\ rounded = Math.round(num4);\ System.out.println("The rounded value of " + num4 + " is : " + rounded);\ \ }\ }\
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