- 7
Fill in the missing parts in the following code to print 13.
int x = 25; int y; y = - 12; System.out.println( );
8 Réponses
+ 3
System.out.println(y);
Phhh you changed the question!
Now its
System.out.println(x+y); 😶
+ 2
Not only did you give me the answer, but you also made me realize how it was done, therefore making me learn why the answer is X. Thanks!
+ 1
Thanks so much guys, you guys are very helpful by the way please explain me in detail
0
Fill in the missing parts in the following code to print 13.
int x = 25; int y;
y =
x
- 12;
System.out.println(
y
);
- 1
System.out.println(x+y);
- 1
lol
- 3
int x = 25; int y;
y = x- 12;
System.out.println(y);
- 5
Fill in the missing parts in the following code to print 12.