Computer Science, asked by mohanaraojalli, 6 hours ago

write a program to input a number.calculate the square root and cube root.finally display the result the rounding it off​

Answers

Answered by shabanashah
1

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);

}

Answered by ranatina117
0

Answer:

iihhbznsnskslksjdhdgdjllsksjdvdhdjklalajsgdg

Similar questions