Computer Science, asked by jitendramehta28618, 6 months ago

write a program to find the side of the square whose perimeter is 20 metre.

Answers

Answered by piyushnanda2
4

Answer:

class abc

{

public void accept ( )

{

int p =20; int s = 0;

s = p/4;

System.out.println{"Side of the square is = "+ s};

}

}

Similar questions