Please Help Coding Started Working Really New Understand Include Include Using Namespace S Q43823311
Please help!!!

Here is some coding that I started working on, but I am reallynew at this and do not understand.
#include <iostream>
#include <string>
using namespace std;
int main(){
string Address;
cout<<“What’s this building’s street address?”;
cin>>Address;
cout<<“The building is located at,”<<Address<<‘n’;
cout<<“What’s the price of the building from last month indollars?”;
cin>>Last;
cout<<“was worth, “<<Last<<“lastmonth,”‘n’;
cout<<“What’s the price of the building from this month indollars?”;
cin>>Current;
cout<<“and is now worth, “<<Current<<“thismonth.”‘n’;
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 ‘n. 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 Show transcribed image text 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 ‘n. 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
Expert Answer
Answer to Please help!!! Here is some coding that I started working on, but I am really new at this and do not understand. #includ…
OR