Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Fix this code, C + + . # include using namespace std; / / pre - processing int main ( ) { / / Briayan

Fix this code, C++.# include
using namespace std;
//pre - processing
int main()
{
// Briayan Student, Programmer
// Program that computes the area of a triangle
// declare and initialize the variables
double area =0, base =0, height =0;
//[Input] request and receive variable values
cout <<"
please enter the base ";
cin >> base;
cout <<"
please enter the height ";
cin >> height;
object height = null;
//[Process] perform any required variable assignment
area =0.5* base * height;
//[Output] display values to the program user
cout <<"
A triangle with base "<< base;
cout <<" and height "<< height;
cout <<"
";
cout <<"
has an area of "<< area;
cout <<" square units." << endl << endl;
cout << "press [Enter] to close this window
";
system("pause"); // Windows command
return 0;
}
#include
using namespace std;
// pre processing directive(s)
int main()
{
// Program that computes the area of a trapezoiddouble area =0, base1=0, base2=0, height =0;
Also, modify your input statements to include both bases.
cout <<"
please enter the base 1";
cin >> base1;
cout <<"
please enter the base 2";
cin >> base2;
cout <<"
please enter the height ";
cin >> height;

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

How To Build A Million Dollar Database

Authors: Michelle Bergquist

1st Edition

0615246842, 978-0615246840

More Books

Students also viewed these Databases questions

Question

ceang algad cod se assuma oat least tuo esras have sceured and seek

Answered: 1 week ago

Question

LO1 Summarize the organizations strategic planning process.

Answered: 1 week ago