- 3
Write a program that will multiply the sum of 5 and 6 by 57.3 and output the result.
Solve this problem and xplain
2 Answers
+ 4
Don't expect people to put effort into helping you if you're not even willing to put any effort into asking your question.
https://www.sololearn.com/Content-Creation-Guidelines?
https://code.sololearn.com/Wv5gTHy1N6Ji/?ref=app
https://www.sololearn.com/discuss/1316935/?ref=app
https://code.sololearn.com/W3uiji9X28C1/?ref=app
https://www.sololearn.com/discuss/333866/?ref=app
0
2BpenciL YT
If you can post your attempt here with a better explanation of the challenge, then we may be able to assist further.
I suspect this challenge has something to do with operator precedence.
5 + 6 * 57.3 = 348.8 -> because * takes precedence over +
However
(5 + 6) * 57.3 = 630.3