Computer Science, asked by blackkshadow, 5 months ago

write a program to calculate the area of square in Java.......its computer science question BTW ​

Answers

Answered by happymind2105
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