//Andres Guzman CSC5 Chapter 2, P. 83, #14
//
/**************************************************************
*
* DISPLAY INPUTED INFORMATION
* ____________________________________________________________
* This program displays personal information of the programmer
*
* Computation is based on the formulas:
* ____________________________________________________________
* INPUT
* name : programmers name
* address : programmers address
* telephone : programmers telephone number
* major : programmers proposed major
* OUTPUT
* name : programmers name
* address : programmers address
* telephone : programmers telephone number
* major : programmers proposed major
**************************************************************/
#include <iostream>
#include <string>
using namespace std;
int main ()
{
string name;
string telephone;
string major;
string address;
//
//Initialzing Variables
name = "Andres Guzman";
telephone = "(123)456-7890";
major = "Robotics";
address = "00000 Address Ave, Moreno Valley, CA, 92553";
//
//Output Results
cout << "Name: " << name << endl;
cout << "Address: " << address << endl;
cout << "Telephone: " << telephone << endl;
cout << "Major: " << major << endl;
return 0;
}