Computer Science, asked by priyankajpg36, 7 months ago

Wap to input side of a square and
find out its area and perimeter c++​

Answers

Answered by Anonymous
2

ANSWER

FOR TURBO C++

# include<iostrem.h>

#include<conio.h>

int main() //function main begins program execution

{

int square_area, square_side;

cout << "Enter the side of square:";

cin >> square_side;

square_area = square_side * square_side;

cout << "Area of Square: " << square_area << endl;

return 0;

clrscr() ;

} // end main

mark me brainliest

Similar questions