Question
PLEASE READ EACH PART OF THE QUESTION Lab 2.1: Working with the cout statement Ex 1: Load the following program into a project in VS
PLEASE READ EACH PART OF THE QUESTION
Lab 2.1: Working with the cout statement
Ex 1: Load the following program into a project in VS (call it lab2_1).
// This program will write the name, address, student Id and phone
// number of the programmer.
// PLACE YOUR NAME HERE
#include
using namespace std;
int main()
{
// Fill in this space to write your first and last name
// Fill in this space to write your address (on new line)
// Fill in this space to write you city, state and zip code (on new line)
// Fill in this space to write your student ID number (on new line)
// Fill in this space to write your telephone number (on new line)
return 0;
}
Fill in the code so the program will write your first, last name, address including city, state, zip code and student ID number Followed by your telephone number. Each of which should be on a new line as stated above.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started