Write a program in C++ that finds the count of a number in a list of integers from a text file named input.txt. - The output will be written to ouput.txt and will count up to the largest number in the list and display how many times each number appears. - The program must first check if input.txt exists. - The maximum /minimum and total amount will be displayed. - You must use functions (the more functions you use, the easier it will be to debug). - Add comments to your code thoroughly explaining the logic. - Libraries you may use: #include , #include , #include , #include , #include , #include , #include - You may use vectors, arrays, and searching & sorting methods
Write a program in C++ that finds the count of a number in a list of integers from a text file named input.txt.
- The output will be written to ouput.txt and will count up to the largest number in the list and display how many times each number appears.
- The program must first check if input.txt exists.
- The maximum /minimum and total amount will be displayed.
- You must use functions (the more functions you use, the easier it will be to debug).
- Add comments to your code thoroughly explaining the logic.
- Libraries you may use: #include <iostream>, #include <string>, #include <fstream>, #include <iomanip>, #include <cmath>, #include <vector>, #include <ctime>
- You may use vectors, arrays, and searching & sorting methods
Ex:
Step by step
Solved in 5 steps with 4 images