Input: A file contains up to 200 test scores ranging in value from 0 to 100; the last entry in the
file is a sentinel value of -999. Output: In an output file, list scores sorted in increasing order;
next to each score is the count of how many times that score appeared in the input. Use the
format shown below:
Test Scores Count
53 1
55 3
This is what I have so far it outputs "testscores" and "count" but no values.
#include <iostream>
#include <fstream>