Computer Science, asked by farhanmohammad9702, 26 days ago

write a program in java to input a side with a value and print the area of the square

Answers

Answered by Anonymous
0

Answer:

Java Program

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);

}

}

Explanation:

follow please

Answered by devadigabharath
0

Explanation:

java Program

1 . public class shpere{

2. 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. }

i think this is the answer for your answer

Similar questions