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
4 Antworten
+ 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
+ 1
c+=b is equal to c=c+b, while c=+b is equal to c=b
+ 1
Also can you please tag the language name that is relevant to what your question or code is about ?
0
I want to ask what is the defference Between c+=b / c=+b