0
Please solve this...
this is in java... and i know ans is "6"... but i no know how to fill six blanks, i mein six gap how to i fill??? int x = 2; int y = 4; int result = x + y; System.out.println(_ _ _ _ _ _) (_ _ _ _ _ _) this six gap.
6 ответов
+ 3
_____________________
public class Program {
public static void main (String[] args) {
int x = 2;
int y = 4;
int result = x + y;
System.out.println (result);
// outputs: 6
}
}
_____________________
that shouldn't be hard to understand.
+ 7
system.out.printIn(result);
just recognise this a question on java cource.. if you stuck any question on progress of course you can click comment option and u have some help.
+ 4
as x=2 and y=4
and x+y=2+4=6
and result=6
+ 2
thanks #Scooby...
many many thanks...
+ 1
the result will be 6 as you are adding two variable .
+ 1
Please solve this...
this is in java... and i know ans is "6"...
but i no know how to fill six blanks, i mein six gap how to i fill???
int x = 2; int y = 4;
int result = x + y;
System.out.println(_ _ _ _ _ _)
(_ _ _ _ _ _) this six gap.