Question

This is C++ You will create an application that allows a user to enter the demographic...

This is C++

You will create an application that allows a user to enter the demographic information: Name, address, phone number, and email address.

0 0
Add a comment Improve this question Transcribed image text
Answer #1
#include <iostream>
using namespace std;

int main()
{
    string name, address, phone, email;
    
    cout<<"Enter name: ";
    cin>>name;
    
    cout<<"Enter address: ";
    getline(cin,address);
    getline(cin,address);
    
    cout<<"Enter phone number: ";
    cin>>phone;
    
    cout<<"Enter email address: ";
    cin>>email;
    
    cout<<"\nName: "<<name<<endl;
    cout<<"Address: "<<address<<endl;
    cout<<"Phone number: "<<phone<<endl;
    cout<<"Email address: "<<email<<endl;
    
    return 0;
}

Add a comment
Know the answer?
Add Answer to:
This is C++ You will create an application that allows a user to enter the demographic...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Create an application where a user can make a phone book such as name, email address,...

    Create an application where a user can make a phone book such as name, email address, phone number.....etc

  • create an application that allows the user to enter the gender (either F or M) and...

    create an application that allows the user to enter the gender (either F or M) and GPA for any number of student the application should calculate the average GPA for all student, the average GPA for male students, and the average GPA for female students

  • In this exercise you will develop a C# application that allows the user to handle a...

    In this exercise you will develop a C# application that allows the user to handle a Windows service. Create a class named ServiceController. Create the following properties: CanShutDown, CanStop, MachineName, ServiceName, ServiceType, Status. Create the following methods: Start, Stop, Close, and ToString to return service controller object information in a nicely formatted string. Provide a constructor that allows the user to initialize ServiceController object information. Write a driver class to test the ServiceController class. The driver class (main class) interacts...

  • Group B Word Pool IL. A computer application that allows the user to enter demographic information,...

    Group B Word Pool IL. A computer application that allows the user to enter demographic information, schedule appointments, maintain lists of computer network data server local area network dumb terminal. insurance payers, perform billing tasks, and generate reports 12 Asystem that links personal computers and peripheral devices to share information and resources router practice management software redundancy Ethernet wide area network 13. Peripheral computer hardware that connects to the router to provide Internet access to the network or computer modem...

  • Create an application that allows you to enter student data that consists of an ID number,...

    Create an application that allows you to enter student data that consists of an ID number, first name, last name, and grade point average. Depending on whether the student’s grade point average is at least 2.0, output each record either to a file of students in good standing (located at StudentsGoodStanding.txt) or those on academic probation (located at StudentsAcademicProbation.txt). Enter ZZZ to Quit. This is in Java

  • c# language Description: Design and implement a C# application that allows the user to enter a...

    c# language Description: Design and implement a C# application that allows the user to enter a number N. It returns to the user the result of the Fibonacci of N. The Fibonacci of a number N is calculated as follows: Fibonacci (0) 0 Fibonacci (1) - Fibonacci (n) - Fibonacci (n-1) + Fibonacci (n-2) Requirements Your Application should have the following: • An exception class called FibException that is thrown when the user enters a negative value of N •...

  • Create an application that allows you to enter student data that consists of an ID number,...

    Create an application that allows you to enter student data that consists of an ID number, first name, last name, and grade point average. Depending on whether the student’s grade point average is at least 2.0, output each record either to a file of students in good standing (located at StudentsGoodStanding.txt) or those on academic probation (located at StudentsAcademicProbation.txt).

  • Create an address book. Given a list of people addresses, create a procedure that allows a...

    Create an address book. Given a list of people addresses, create a procedure that allows a user to search for a particular name and returns the address from the table. (Refer to worksheet "14.23") Search for the name using the match function and the Application object. Name the range that contains the names in the address table. Then use the Offset property (Cells property) to gather the corresponding information. You may need to name another range to make this easier....

  • ASAP Please. Python Program Description Create an object-oriented program that allows you to enter data for...

    ASAP Please. Python Program Description Create an object-oriented program that allows you to enter data for employees. Specifications Create an abstract Employee class that provides private attributes for the first name, last name, email address, and social security number. This class should provide functions that set and return the employee’s first name, last name, email address, and social security number. This class has a function: get_net_income which returns 0. Create a Manager class that inherits the Employee class. This class...

  • PHP you need to create a form to allow the user to enter their name, email,...

    PHP you need to create a form to allow the user to enter their name, email, and address information. That information will be sent to a PHP script that will process and display that information. Your assignment should have two pages. The first page is straight html (user_input.html) that has a form with the appropriate form elements to collect the user input. The form should then be submitted using the POST method to a php script (display_user_info.php) that will process...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT