#include #include "config.h" #include "addition.h" #include "subtract.h" #include "multiply.h" #include "chu.h" using namespace std; int main(int argc, char* argv[]){ cout << "hello young!" << endl; cout << "PROJECT_VERSION: " << VERSION << endl; cout << "CMD: " << CMD << endl; #ifdef DATE_ONE cout << "DATE_ONE: " << DATE_ONE << endl; #endif #ifdef DATE_TWO cout << "DATE_TWO: " << DATE_TWO << endl; #endif int res = addition(10, 20); cout << "addition(10, 20) - result: " << res << endl; cout << "subtract(70, 10) - result: " << subtract(70, 10) << endl; cout << "multiply(21, 6) - result: " << multiply(21, 6) << endl; cout << "chu(21, 3) - result: " << chu(21, 3) << endl; // getchar(); while(cin){ if(cin.get() == '\n') break; } return 0; }