From 929152949f104f1d4e7d677950973316fa542461 Mon Sep 17 00:00:00 2001 From: jase Date: Wed, 11 Sep 2024 11:45:09 -0700 Subject: [PATCH] changed names of operations --- main.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/main.cpp b/main.cpp index 47b917d..6ceba19 100644 --- a/main.cpp +++ b/main.cpp @@ -7,17 +7,17 @@ using std::endl; int main(){ double first, second; - cout<< "First number: "; + cout<< "1st number: "; cin>> first; - cout<< "Second number: "; + cout<< "2nd number: "; cin>> second; - cout<< "Addition: "<< first << "+" << second << "="; + cout<< "Add: "<< first << "+" << second << "="; cout<< (first+second) << endl; - cout<< "Subtraction: "<< first << "-" << second << "="; + cout<< "Sub: "<< first << "-" << second << "="; cout<< (first-second) << endl; - cout<< "Multiplication: "<< first << "*" << second << "="; + cout<< "Multiply: "<< first << "*" << second << "="; cout<< (first*second) << endl; return 0; -} \ No newline at end of file +}