Can anyone tell that ,in this code how can I take three output from user and total there some and print all 3 number total. Help | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can anyone tell that ,in this code how can I take three output from user and total there some and print all 3 number total. Help

Help how can I display the total of all three number which I take as input. https://code.sololearn.com/cB3Xtk1oXOlz/?ref=app

28th Aug 2021, 4:32 PM
Dinku Katre
4 Answers
+ 1
c+=b instead of c=+b You need to enter each new input on a newline , so for 3 numbers it would be in the following order, First num Second num Third num
28th Aug 2021, 4:39 PM
Abhay
Abhay - avatar
+ 1
c+=b is equal to c=c+b, while c=+b is equal to c=b
28th Aug 2021, 4:44 PM
Abhay
Abhay - avatar
+ 1
Also can you please tag the language name that is relevant to what your question or code is about ?
28th Aug 2021, 4:46 PM
Abhay
Abhay - avatar
0
I want to ask what is the defference Between c+=b / c=+b
28th Aug 2021, 4:42 PM
Dinku Katre