Write a program to input the area of a square and find its perimeter ?
Answers
Answered by
0
Explanation:
10. input "enter side";s
20. let area = s*s
30. let peri = s*4
40.print" Area of the square =";area,"SQ.CM"
50.print"perimeter of the square =";peri,"CM"
60.end
Similar questions