Computer Science, asked by gairikanag, 9 months ago

Write a program to input the area of a square and find its perimeter ?

Answers

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