//Area of Square side2
#include<iostream>
#include<conio.h>
#include<math.h>
using namespace std;
int main()
{
double pi=3.1415926535,side,Ans;
cout<<"Enter Side 1 = ";
cin>>side;
Ans=side*side;
cout<<"Area of Square = "<<Ans;
getch();
}
Find Tons of C++ Programming examples, projects with code. Also find books solutions.
0 Questions:
Post a Comment