So... X++ increase the value, and ++X decrease the value ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

So... X++ increase the value, and ++X decrease the value ?

Help me to understand, when can ai used ++X

29th Mar 2017, 5:19 AM
Luis Berbesi Estupinan
Luis Berbesi Estupinan - avatar
2 Answers
+ 6
X++ and ++X increase while x-- and --x decrease. they are the same when they are alone, but when in comparative statements or in assigning, things change. y = X++ here y would have the old value of x, then the value of x goes up. with y = ++x, the value of x goes up and its new value is assigned to y EDIT: The same goes for comparing.
29th Mar 2017, 5:31 AM
stance changer
stance changer - avatar
0
(x++ & ++x increase) (--x & x-- decreases )
30th Mar 2017, 6:37 AM
Devine Noel
Devine Noel - avatar