C++  Create a standalone program that performs the tasks below. Start by solving task one and complete that task before starting task 2. Your program should read the files mentioned from the "current working directory"   All files are in text format with "\ n" at the end of the line. If you wish, you can use pipes and redirects to solve the file reading and printing instead of std :: ifstream and std :: ofstream. Comment on it in the code along with examples of how the program is used. The file names.txt contains names and social security numbers in the following form.   The file contains several people: FirstName LastName YYMMDDNNNN AdressLine   Your task is to convert the input data into the form: Surname, First name AddressLine  The output should indicate whether the person is a man or a woman. For example, for a man it may say: Last name, First name [M] AddressLine    * YYMMDDNNNN: All those registered in the country are given a personal identity number as identification. A person who has been given a number will keep the same number for their whole life. The personal identity number gives the date of birth of the person, a birth number, and a check digit. The only information that can be read from a personal identity number are date of birth and sex. The sex is shown by the second last number in the personal identity number, which is odd for men and even for women. More information about personal identity numbers is available in the brochure “Persnummer” (Personal Identity Numbers) Ex: 9910230493 (Male because 9 is an odd number is assigned to males) EX: 9910230467 (Female because 6 is an even number to females) Note: *** The result in your program should be written to a new file. So you need to open 2 files in your program, one for reading and one for writing.

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter8: I/o Streams And Data Files
Section8.4: File Streams As Function Arguments
Problem 3E
icon
Related questions
Question

C++ 

Create a standalone program that performs the tasks below.

Start by solving task one and complete that task before starting task 2.
Your program should read the files mentioned from the "current working directory"  
All files are in text format with "\ n" at the end of the line.
If you wish, you can use pipes and redirects to solve the file reading and printing instead of std :: ifstream and std :: ofstream.
Comment on it in the code
along with examples of how the program is used.

The file names.txt contains names and social security numbers in the following form.  

The file contains several people:


FirstName LastName
YYMMDDNNNN
AdressLine

 

Your task is to convert the input data into the form:
Surname, First name
AddressLine 

The output should indicate whether the person is a man or a woman. For example, for a man it may say:
Last name, First name [M]
AddressLine 

 

* YYMMDDNNNN: All those registered in the country are given a personal identity number as identification. A person who has been given a
number will keep the same number for their whole life.

The personal identity number gives the date of birth of the
person, a birth number, and a check digit. The only information that can be read from a personal identity number
are date of birth and sex. The sex is shown by the second
last number in the personal identity number, which is odd
for men and even for women. More information about personal identity numbers is available in the brochure “Persnummer” (Personal Identity Numbers)
Ex: 9910230493 (Male because 9 is an odd number is assigned to males)
EX: 9910230467 (Female because 6 is an even number to females)

Note: *** The result in your program should be written to a new file. So you need to open 2 files in your program, one for reading and one for writing.

Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
File Input and Output Operations
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.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr