How do I get a array to just count how many numbers there are instead of counting the value of each number?
- by Chad Loos
//This is the output of the program
*** start of 276 2D Arrays_03.cpp program ***
Number Count Total
1 3 3
2 6 9
3 15 24
4 6 30
5 9 39
*** end of 276 2D Arrays_03.cpp program ***
#include <iostream>
#include <string>
#include…