write a programme to find the side of the square whose petimeter is 20m
Answers
Answered by
2
class side
{
public static void main (String args [ ])
{
int p=20;
double s;
s = 20/4.0;
System.out.println ("side"+s);
}
}
Hope this will help you.
Similar questions