Why wont it miltiply correctly | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Why wont it miltiply correctly

#include <iostream> using namespace std; int main() { int a, b; cout << "Enter a number \n"; cin >> a; cout << "Enter another number \n"; cin >> b; int sum=a+b; if (a, b =a+b) cout << sum; int product=a*b; if (a, b=a*b) cout<<product; return 0; }

13th Dec 2018, 9:33 AM
Elliot Alderson
3 Answers
+ 7
"but I was using them because I wanted to let the user choose to add or multiply the two numbers" It demands to implement your solution differently. For example #include <iostream> using namespace std; int main() { int a, b; cout << "Enter a number \n"; cin >> a; cout << "Enter another number \n"; cin >> b; int choice; cout << "1) Add\n" << "2) Multiply\n"; cin >> choice; switch (choice) { case 1: cout << "Sum: " << a+b << endl; break; case 2: cout << "Product: " << a*b << endl; break; default: cout << "Wrong choice!\n"; } return 0; } Output: Enter a number 5 Enter another number 4 1) Add 2) Multiply 2 Product: 20
13th Dec 2018, 9:52 AM
Babak
Babak - avatar
+ 7
Because what you've done inside `if` statements have nothing to do with summation and multiplication and mess everything after the first `if` statement. #include <iostream> using namespace std; int main() { int a, b; cout << "Enter a number \n"; cin >> a; cout << "Enter another number \n"; cin >> b; int sum=a+b; cout << "Sum: " << sum << endl; int product=a*b; cout << "Product: " << product; return 0; } Output: Enter a number 5 Enter another number 4 Sum: 9 Product: 20 _____ For more info about the comma operator visit: https://en.cppreference.com/w/c/language/operator_other#Comma_operator
13th Dec 2018, 9:37 AM
Babak
Babak - avatar
+ 2
I see what you're saying but I was using them because I wanted to let the user choose to add or multiply the two numbers
13th Dec 2018, 9:44 AM
Elliot Alderson