diff --git a/CppMath b/CppMath new file mode 160000 index 0000000..14936c0 --- /dev/null +++ b/CppMath @@ -0,0 +1 @@ +Subproject commit 14936c0a26d39b8368f0edd5a9f994a8c75474e4 diff --git a/main.cpp b/main.cpp index 47b917d..1458e03 100644 --- a/main.cpp +++ b/main.cpp @@ -18,6 +18,9 @@ int main(){ cout<< (first-second) << endl; cout<< "Multiplication: "<< first << "*" << second << "="; cout<< (first*second) << endl; + // Add division function + cout<< "Division: "<< first << "/" << second << "="; + cout<< (first/second) << endl; return 0; -} \ No newline at end of file +} \ No newline at end of file