0
If x=2 y=4 into result x_ _; system. out. println is what
4 Respostas
+ 3
6
+ 2
int result = x + y;
0
System. out. Printing is?
0
result holds now x + y which is 6
System = class
out = variable
print/println = methods
System.out.println(result);
//output 6