Write a program that prompts the user to input first name, middle initial, and last name (in upper case) for an ID card. There is a 22-character limit that also includes spaces in between the names on the ID card. The following conditions/limitations are observed: A. If the first name, second name, middle initial, and last name exceed the character limit, use the first name initial and last name. B. If the last name's character count is greater than or equal to the character limit, omit the second name and middle initial. Use the first name initial and truncate the last name to fit the character limit. C. The spaces in between the first name, second name, middle initial, and last name should not be included in the input.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

C++ LANGUAGE

PROBLEM:
Write a program that prompts the user to input first name, middle initial, and last name (in upper case) for an ID card. There is a 22-character
limit that also includes spaces in between the names on the ID card. The following conditions/limitations are observed:
A. If the first name, second name, middle initial, and last name exceed the character limit, use the first name initial and last name.
B. If the last name's character count is greater than or equal to the character limit, omit the second name and middle initial. Use the first
name initial and truncate the last name to fit the character limit.
C. The spaces in between the first name, second name, middle initial, and last name should not be included in the input.
D. If there is no second name or middle initial, input 0.
E. Omit any space in the last name, e.g., DE GUZMAN will be DEGUZMAN.
SPECIFICATIONS:
- You may only use the codes that we studied under our lectures
- All lines of codes should have a comment.
- Save your cpp file as Surname - PE (Example: Pangaliman - PE.cpp)
TEST CASES:
If a user inputs a whole name with less than or equal to 22 characters, RIC JOSEPHA. BALOG:
Enter first name: RIC
Enter second name: JOSEPH
Enter middle initial: A
Transcribed Image Text:PROBLEM: Write a program that prompts the user to input first name, middle initial, and last name (in upper case) for an ID card. There is a 22-character limit that also includes spaces in between the names on the ID card. The following conditions/limitations are observed: A. If the first name, second name, middle initial, and last name exceed the character limit, use the first name initial and last name. B. If the last name's character count is greater than or equal to the character limit, omit the second name and middle initial. Use the first name initial and truncate the last name to fit the character limit. C. The spaces in between the first name, second name, middle initial, and last name should not be included in the input. D. If there is no second name or middle initial, input 0. E. Omit any space in the last name, e.g., DE GUZMAN will be DEGUZMAN. SPECIFICATIONS: - You may only use the codes that we studied under our lectures - All lines of codes should have a comment. - Save your cpp file as Surname - PE (Example: Pangaliman - PE.cpp) TEST CASES: If a user inputs a whole name with less than or equal to 22 characters, RIC JOSEPHA. BALOG: Enter first name: RIC Enter second name: JOSEPH Enter middle initial: A
TEST CASES:
If a user inputs a whole name with less than or equal to 22 characters, RIC JOSEPH A. BALOG:
Enter first name: RIC
Enter second name: JOSEPH
Enter middle initial: A
Enter last name: BALOG
Result: RIC JOSEPH A BALOG
If a user inputs a whole name with more than 22 characters. RIANNA CAMILLE G. VENTURA:
Enter first name: RIANNA
Enter second name: CAMILLE
Enter middle initial: G
Enter last name: VENTURA
Result: R VENTURA
Transcribed Image Text:TEST CASES: If a user inputs a whole name with less than or equal to 22 characters, RIC JOSEPH A. BALOG: Enter first name: RIC Enter second name: JOSEPH Enter middle initial: A Enter last name: BALOG Result: RIC JOSEPH A BALOG If a user inputs a whole name with more than 22 characters. RIANNA CAMILLE G. VENTURA: Enter first name: RIANNA Enter second name: CAMILLE Enter middle initial: G Enter last name: VENTURA Result: R VENTURA
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Function Arguments
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education