0
Java
'x' +'y' = 241 Why?? https://code.sololearn.com/cYG0qPuO94Tp/?ref=app
5 Respostas
+ 7
Your adding together the ascii char values of x an y (120+121) in your print statement use Mohit the coder (M.S.D) method to keep your vaules seperate or use x+y to sum your values
+ 3
System.out.print(x+""+y);
0
How can i I out.print x and y just in one line, like 23, if x=2, y=3?
0
Thanks, guys!