C++ Program to Calculate Area of Rectangle. I have used CodeBlocks compiler for debugging purpose. But you can use any C programming language compiler as per your availability.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #include<iostream> #define PI 3.141 using namespace std; int main() { int length, breadth, area; cout << "Enter length of rectangle : "; cin >> length; cout << "Enter breadth of rectangle : "; cin >> breadth; // Formula to calculate area of Rectangle area = length * breadth; cout << "Area of rectangle : " << area; return 0; } |
03 March 2019 3725 Written By: Rohit Mhatre
© 2020 Tech Study. All rights reserved | Developed by Tech Study| Privacy Policy | Sitemap