So for I have to take values from one file named targets.txt which has 3 rows of values. each row has 6 values in it. I also have a file named candidates.txt. This has 10 rows of 6 values. From there I have to compare them. so basically the first value in the first row of candidates subtracted from the first in in the first row in targets, then the second in candidates from the second in targets, and so on. I want to do this in calcit. How exactly would I do that? If the values in the rows were summed and then subtracted, that would also work if thats easier, but i just don't know how to take values from files and use them together
using namespace std;