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: First Name Last Name YYMMDDNNNN Address bar  Your task is to convert the input data into the form: Surname, First name Address bar (string line) 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] Address bar (string line)   * YYMMDDNNNN: All those registered in Sweden 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. This means that the personal identity number does not change e.g. if you move from or to Sweden. 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).

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:


First Name Last Name
YYMMDDNNNN
Address bar 

Your task is to convert the input data into the form:
Surname, First name
Address bar (string line)

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]
Address bar (string line)

 

* YYMMDDNNNN: All those registered in Sweden 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.
This means that the personal identity number does not
change e.g. if you move from or to Sweden.
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).

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 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