Computer Science, asked by bondbaking74, 2 months ago

write a java program to find the area of square
by using input stream​

Answers

Answered by swetanks2007
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);

Answered by aswin03
2

Answer:

1) Java Program

2) public class shpere{

public static void main(String args[])

3) {

4) int s=13;

5) int area_square=s*s;

6) System.out.println("Area of the square="+area_square);

7) }

8) }

Similar questions