Suppose a user wants to calculate the square of a number or the square root of a number, and display the results.
import java.util.Scanner;
public class Square {
public static void main(String[] args) {
System.out.println("Input your number:");
Scanner scanner = new Scanner(System.in);
int n = scanner.nextInt();
System.out.println("Square of a number: " + (n*n));
System.out.println("Square root of a number: " + Math.sqrt(n));
}
}
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
JavaJSPJSF