Write a program using conditional operator to input any two integers and if the difference is positive, find the square root or its cube root (java program)
Answers
Answer:
import java.util.Scanner; public class KboatRoots { public static void main(String args[]) { Scanner in = new Scanner(System.in); System.out.print("Enter the number: "); int num = in.nextInt(); double sqrtValue = Math.sqrt(num); double cbrtValue = Math.cbrt(num); long roundSqrt = Math.round(sqrtValue); long roundCbrt = Math.round(cbrtValue); System.out.println("Square root of " + num + " = " + sqrtValue); System.out.println("Rounded form = " + roundSqrt); System.out.println("Cube root of " + num + " = " + cbrtValue); System.out.println("Rounded form = " + roundCbrt); } }
Explanation:
using conditional operator to input any two integers and if the difference is positive, find the square root or its cube rootusing conditional operator to input any two integers and if the difference is positive, find the square root or its cube root