write a program to calculate the area of square in Java.......its computer science question BTW
Answers
Answered by
1
Answer:
public class shpere{
public static void main(String args[])
{
int s=13;
int area_square=s*s;
System.out.println("Area of the square="+area_square);
}
}
Similar questions