Area of Parallelogram|| C++ program to find Area of Parallelogram || C++
In this, we are going to see how to find Area of  Parallelogram using C++ program.

The formula to calculate is,

Area of Parallelogram = base * height 

The Code given below can be used in Turbo C++ Compiler.

#include<iostream.h>
#include<conio.h>

void main()
{
    clrscr();
    float area, base, height;
    cout<<"This program is for Area of Parallelogram\n";
    cout<<"Enter the Base and Height of the Parallelogram\n";
    cin>>base>>height;

    //formula for area of Parallelogram is base x height
    area = base*height;
    cout<<"The Area of the Parallelogram with base "<<base<<" and height "<<height<<" is = "<<area<<" sq units";
    getch();
}
    
    

The Code given below can be used in g++/gcc Compiler.

#include<iostream>
using namespace std;

int main()
{
    float area, base, height;
    cout<<"This program is for Area of Parallelogram\n";
    cout<<"Enter the Base and Height of the Parallelogram\n";
    cin>>base>>height;

    //formula for area of Parallelogram is base x height
    area = base*height;
    cout<<"The Area of the Parallelogram with base "<<base<<" and height "<<height<<" is = "<<area<<" sq units";
    return 0;
}
    

#ENJOY CODING

Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post