From e0204a02c34714b327a0960ae642d6521d58bd0f Mon Sep 17 00:00:00 2001 From: Eric Galvan Date: Wed, 11 Sep 2024 12:10:07 -0700 Subject: [PATCH] Implemented division functionality --- main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.cpp b/main.cpp index 47b917d..08a2923 100644 --- a/main.cpp +++ b/main.cpp @@ -18,6 +18,8 @@ int main(){ cout<< (first-second) << endl; cout<< "Multiplication: "<< first << "*" << second << "="; cout<< (first*second) << endl; + cout << "Division: " << first << "/" << second << "="; + cout << (first/second) << endl; return 0; } \ No newline at end of file