Question: Please help!!! Here is some coding that I started working on, but I am really new at this and do not understand. #include #include using
Please help!!!

Here is some coding that I started working on, but I am really new at this and do not understand.
#include
#include
using namespace std;
int main(){
string Address;
cout
cin>>Address;
cout
cout
cin>>Last;
cout
cout
cin>>Current;
cout
return 0;
}
Please help and show all steps. Thank you!
Assignment Create a C++ program in a file named mlab2.cpp that does the following: 1. Asks the user for a building's street address: store the number as an integer, name as a string, type as a string (Ave, Pkwy, Blvd, etc.). 2. Ask the user for the price of the building from last month in dollars: store the number as an int. 3. Ask the user for the price of the building from this month in dollars: store the number as an int. 4. Outputs all of the information to the screen (see Example below). Restrictions 1. Do not use endl unless absolutely necessary. This makes your program inefficient. To create a new line, use ' . 2. Match the example below exactly (spaces and newlines) Be sure to end your output with a newline, otherwise your output may display at the end of your output, which indicates the lack of a newline character. Example ./mlab2 Enter the building's street address: 83 Spring Ave Enter last month's value: 140000 Enter this month's value: 150000 The building located at 83 Spring Ave was worth $140000 last month, and is now worth $150000 this month. Compiling Compile your code using the following command line: g++ -std=C++11 -Wall -o mlab2 mlab2.cpp
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
