// Debug3.cpp : Defines the entry point for the console application. // #include "Odd.h" #include int main(int argc, char* argv[]) { Odd O; O.doLotsOfAdds(); O.doLotsOfMultiplies(); O.printNumCalculations(); printf("Press return to end ..."); char c; scanf("%c",&c); return 0; }