Answer:
// program in java.
import java.util.*;
// class definition
class Main
{// main method of the class
public static void main (String[] args) throws java.lang.Exception
{
try{
// object to read input
Scanner scr=new Scanner(System.in);
System.out.print("Enter area of square: ");
// read the area of square
double areaOfSquare=scr.nextDouble();
// if area is negative
if(areaOfSquare<0)
{
// print Invalid
System.out.println("INVALID");
}
// else find side of the square and print it.
else
System.out.println("The side of the square is: "+Math.sqrt(areaOfSquare));
}catch(Exception ex){
return;}
}
}
Explanation:
Read the area of square from user and assign it to variable "areaOfSquare". If the area entered by user is negative then print "INVALID" otherwise find the side of the square with Math.sqrt() function and print it.
Output:
Enter area of square: -4
INVALID
Enter area of square: 25
The side of the square is: 5.0