Write a recursive function int count_digit(string s) to count the number of digits in a string s. Write a program that reads a text file numbers.txt (is given), and calls the function count_digit to count the number of digits of each of the file lines. • The program then store the number of digits of each line of numbers.txt into another file called result_counting.txt (Needs to be created). Example: The number of digits in the 1st line "12*3MA569" is 6, so 6 should be stored in the 1st line in result_counting.txt The number of digits in the 2nd line "P854/ " is 3, so 6 should be stored in the 2nd line in result_counting.txt • The program needs as well to multiply these numbers then display the multiplication into the screen. • Submit only the program that should be named your FirstName_LastNameLab3.cpp Below is how you program should behave. ---Input file: numbers.txt |------/ 12*3MA569' P854/ ma12z658?111. 1,2 5-647.pl --Output file: result_counting.txt 6 Screen output-- ----/ The multiplication of 6 3 8 2 4 is equal to 1152

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++ programming language

Please help me with this program.

The task and numbers.txt are attached below.

numbers.txt is the image with the 5 lines of text

Can you also please show me how to create the text file and make the program work? when I create a text file with the things that i was supposed to input, the program doesn't show anything.

12* 3MA5 69'
P854/
ma12z658?111.
1,2
5-647.pl
Transcribed Image Text:12* 3MA5 69' P854/ ma12z658?111. 1,2 5-647.pl
Write a recursive function int count_digit(string s) to count the number of digits in a string s.
Write a program that reads a text file numbers.txt (is given), and calls the function count_digit to count
the number of digits of each of the file lines.
The program then store the number of digits of each line of numbers.txt into another file called
result_counting.txt (Needs to be created).
Example:
The number of digits in the 1st line "12*3MA569" is 6, so 6 should be stored in the 1st line in
result_counting.txt
The number of digits in the 2nd line "P854/
result_counting.txt
is 3, so 6 should be stored in the 2nd line in
• The program needs as well to multiply these numbers then display the multiplication into the screen.
Submit only the program that should be named your FirstName_LastNameLab3.cpp
Below is how you program should behave.
--
|------/
12*3MA569'
P854/
ma12z658?111.
1,2
5-647.pl
/-
--Input file: numbers.txt
--Output file: result_counting.txt
3
8
2
Screen output--
---
The multiplication of 6 3 8 2 4 is equal to 1152
Transcribed Image Text:Write a recursive function int count_digit(string s) to count the number of digits in a string s. Write a program that reads a text file numbers.txt (is given), and calls the function count_digit to count the number of digits of each of the file lines. The program then store the number of digits of each line of numbers.txt into another file called result_counting.txt (Needs to be created). Example: The number of digits in the 1st line "12*3MA569" is 6, so 6 should be stored in the 1st line in result_counting.txt The number of digits in the 2nd line "P854/ result_counting.txt is 3, so 6 should be stored in the 2nd line in • The program needs as well to multiply these numbers then display the multiplication into the screen. Submit only the program that should be named your FirstName_LastNameLab3.cpp Below is how you program should behave. -- |------/ 12*3MA569' P854/ ma12z658?111. 1,2 5-647.pl /- --Input file: numbers.txt --Output file: result_counting.txt 3 8 2 Screen output-- --- The multiplication of 6 3 8 2 4 is equal to 1152
Expert Solution
Step 1

Here, I have to write a C++ program for the above question.

trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Arrays
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