WAP in java to display the area of a Square.
Answers
Answered by
1
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:
hope it helps you
plz mark me as brainliest answer
Answered by
0
Explanation:
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