+ 7
Answer this please
Fill in the blanks to print the sum of the two variables. int x = 2; int y = 4; int result = x _ _ ; System.out.println(_);
12 ответов
+ 3
int x= 2;int y= 4;
int _= x+y;
System.out.println(_);
// u can use this to print the sum of two variable
+ 3
What will be the output of this code?
x = “2”
y = “4”
z = int(x) + int(y)
print(z)
6
+ 3
+ 2
int result = x + y;
System.out.println(result);
the output will be 6
+ 1
The output will be 6
because 2 + 4 = 6
+ 1
Int x =6 int y =4 int z=2
+ 1
Show me your minimal working approach
0
X=4. X*=3
0
System.out.print Ln(result);
0
System.out.println(result);
0
Answer send chei
- 2
int x = 2;
int y = 4;
int total = x+y;
System.out.println(total);