write a java program to find the area of square
by using input stream
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);
Answered by
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