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