IB Math
I noticed that my stats are off by 100 points, i.e. the total is less than the sum of the subtotals. I think IB lost count when I got my tenth Manhattan set. Has anybody else noticed this hiccup?
Blinksale: Easy, painless, online invoicing for small businesses
I noticed that my stats are off by 100 points, i.e. the total is less than the sum of the subtotals. I think IB lost count when I got my tenth Manhattan set. Has anybody else noticed this hiccup?
iqon on Jul 31, 2007
frequently logging out and back in will resolve the counts
louiemctool on Jul 31, 2007
i am jealous of your math skills...
iconmaniac on Jul 31, 2007
@iqon - Bingo! Logging out did it. Thanks for the suggestion.
@louiemctool - No biggie, reaally.
int correctTotal = 0;
for (int i = 0; i < sizeof(subtotals) / sizeof(subtotals[0]); i++) {
correctTotal += subtotals[i];
}
cout << (correctTotal == actualTotal ? "Happy camper!" : "WTF?") << endl;