+ 2
I need help
6 Respostas
+ 4
What’s your question?
+ 3
y=x++ :
y=x
x=x+1
y=++x :
y=x+1
x=x+1
+ 2
i am confused in ++x and x++ 😢
+ 2
My friend kashfia waqar
This helps you a lot
https://www.sololearn.com/learn/Java/2141/
+ 1
if y = x++, then , y = x and x= x+1.
if y =++x, then, y = x+1 and x = x+1.