+ 1
beginner question regarding variables.
Hi please help having problem with this code. Do not know what is the problem. public class MyFirst { public static void main(String[] args) { int x = 2; y = 4; int result = x + y; System.out.printIn(result); } }
2 Answers
+ 13
@alvin :::: int x=2,y=4; //just 1 error âș
@kanishk ::: see again dude
0
thanks men i understand now