If x=2 y=4 into result x_ _; system. out. println is what | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

If x=2 y=4 into result x_ _; system. out. println is what

23rd Mar 2019, 9:56 PM
Echobravo
4 Answers
+ 3
6
23rd Mar 2019, 10:26 PM
Ole113
Ole113 - avatar
+ 2
int result = x + y;
23rd Mar 2019, 10:09 PM
JavaBobbo
JavaBobbo - avatar
0
System. out. Printing is?
24th Mar 2019, 12:35 PM
Echobravo
0
result holds now x + y which is 6 System = class out = variable print/println = methods System.out.println(result); //output 6
24th Mar 2019, 12:51 PM
JavaBobbo
JavaBobbo - avatar