From 6be9d2df34ef6188b65aff7ede546071c9f3ec25 Mon Sep 17 00:00:00 2001 From: Luke Maloney Date: Wed, 11 Sep 2024 11:35:05 -0700 Subject: [PATCH] added division --- main.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index 47b917d..34729c0 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 << "Multiplication: " << first << " multiplied by " << second << "="; // Modified line + cout << (first * second) << endl; return 0; -} \ No newline at end of file +}