Question: Use what you have learned about capturing user input to create an enhanced version of the business card program. The program should use the same

Use what you have learned about capturing user input to create an enhanced version of the business card program. The program should use the same address information as the original program:
Community College of Philadelphia
1700 Spring Garden St.
Philadelphia PA 19130
This time however, the program should prompt the user to enter a first name, a last name, and an email address. An example of a running program follows.
Enter first name: Alan
Enter last name: Turing
Enter email address: alan.turing@ccp.edu
Each of these questions would appear in a prompt. Then in the console, the follow would be output...
Alan Turing
Student
alan.turing@ccp.edu
Community College of Philadelphia
1700 Spring Garden St.
Philadelphia PA 19130
Unlike the first iteration, you do not need to make each word a separate variable. Break the address input across variables in a way that seems reasonable.
Use the following variable naming conventions:
Variable names should start with a lowercase letter.
Multi-word variable names should combine the words using a capital letter for each subsequent word (camelCase).

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!