diff options
Diffstat (limited to 'if.cpp')
-rw-r--r-- | if.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -0,0 +1,21 @@ +#include <iostream> + +int main () { + + int currVal = 0, val = 0, counter = 1; + if(std::cin >> currVal) { + while(std::cin >> val) { + if (currVal == val) { + ++counter; + } else { + std::cout << "You entered " << currVal << " " << counter << " times." << std::endl; + currVal = val; + counter = 1; + } + + } + std::cout << "You entered " << currVal << " " << counter << " times." << std::endl; + } + + return 0; +} |