Easyway How To Write a Program in C++ for Calculating Area of Triangle When base and height is given Program Statement: Write a C++ program to input base and height of a triangle and calculates and prints the area of triangle. Input base and height, compute area of triangle c++ program Formula for Area of Triangle C++ program when base and height are given The formula for area of triangle to be used in this C++ program is as as follows: area of triangle = 1 / 2 x base x height How Formula of Area of Triangle is Transformed into C++ Arithmetic Expressions In C++ programming, we write the above formula as following C++ expression. area = 1.0/2.0 * base * height C++ Source Code for Calculating Area of Triangle When Base and Height are Given #include #include #include void main() { float area, base, height; clrscr(); cout<>base; cout<>height; area = 1.0 / 2.0 * base * height; cout< //include for cin, cout #include //include for clrscr() #include //include for setprecision() void main() { float area, base, height; //declare variables clrscr(); cout<>base; //input base cout<>height; //input height area = 1.0 / 2.0 * base * height; //compute area cout<