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
Spring Garden St
Philadelphia PA
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@ccpedu
Each of these questions would appear in a prompt. Then in the console, the follow would be output...
Alan Turing
Student
alan.turing@ccpedu
Community College of Philadelphia
Spring Garden St
Philadelphia PA
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.
Multiword 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
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
