//Finds area of triangle using its base and height #include int main() { float base,height; cout<<"Base length : ";cin>>base; cout<<"Height : ";cin>>height; cout<<"Area of triangle = "<<0.5*base*height<