0
I know what to put at int result x _ _ but what would you put after printIn(___)?
int x = 2; int y = 4; int result = x _ _ ; System.out.println(____)
5 ответов
+ 2
result
+ 2
In order to see the answer, your would enter 'result', however, don't forget the ; on the print statement!
0
i think
0
thank you, Jim!
0
Hi Jim and Co , the correct answer is below. remember you are adding to variables
int x = 2; int y = 4;
int result = x + y ;
System.out.println(Result);
Cheers,
Clement