Computer Science, asked by hemant0282, 7 months ago

write a programme to find the side of the square whose petimeter is 20m​

Answers

Answered by Munmun57
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