diff --git a/CM2005 Object Oriented Programming/Topic 1/1.3.1/a.exe b/CM2005 Object Oriented Programming/Topic 1/1.3.1/a.exe new file mode 100644 index 0000000..bfdf9b4 Binary files /dev/null and b/CM2005 Object Oriented Programming/Topic 1/1.3.1/a.exe differ diff --git a/CM2005 Object Oriented Programming/Topic 1/1.3.1/main.cpp b/CM2005 Object Oriented Programming/Topic 1/1.3.1/main.cpp new file mode 100644 index 0000000..8711388 --- /dev/null +++ b/CM2005 Object Oriented Programming/Topic 1/1.3.1/main.cpp @@ -0,0 +1,20 @@ +#include + +int main(int argc, char const *argv[]) +{ + // 1 print help + std::cout << "3: Make an offer " << std::endl; + // 2 print exchange stats + std::cout << "2: Print exchange stats " << std::endl; + // 3 make an offer + std::cout << "3: Make an offer " << std::endl; + // 4 make a bid + std::cout << "4: Make a bid " << std::endl; + // 5 print wallet + std::cout << "5: Print wallet " << std::endl; + // 6 continue + std::cout << "6: Continue" << std::endl; + return 0; +} + +// Used the command "g++ main.cpp -o merkletrade" to generated merkletrade.exe \ No newline at end of file diff --git a/CM2005 Object Oriented Programming/Topic 1/1.3.1/merkletrade.exe b/CM2005 Object Oriented Programming/Topic 1/1.3.1/merkletrade.exe new file mode 100644 index 0000000..d35d47f Binary files /dev/null and b/CM2005 Object Oriented Programming/Topic 1/1.3.1/merkletrade.exe differ