0
How I fil it
in x=2; it y=4; int result x - -; system.out.print (-----)
13 Respuestas
+ 1
By looking at code I assume that you want to print value of x after decreasing by 1
So the code for that:
int x=2;
x--;
System.out.print(x);
0
what do you want to print bro??
0
This is the question that asked from me
fill in the blanks to print the sum of the two variables
it x= 2; int y=4;
int result= x_ _;
system.out.println(______);
0
int x = 4;
int
y = 7;
+
sum
0
This is the question that asked from me
fill in the blanks to print the sum of the two variables
it x= 2=4; int y=7;
int sum = x+y;
system.out.println(sum);
0
4
0
if
x
else
- 1
int x=2,y=4;
int result = x+y;
System.out.print(result);
- 1
Please type in a code to declare two variables of type int and print their sum using the sum variable.
int x = 4;
_______ y = 7;
int sum = x + y;
System.out.println(_________);
- 2
shuuuush
- 3
int x=2,y=4;
int result = x+y;
System.out.print(result);
- 4
Fill in the blanks to print 11.
int a = 10;
----a;
System.out.println(a);
- 5
Please type in a code to declare two variables of type int and print their sum using the sum variable.
int x = 4;
___y = 7;
int sum =x___ y;
System.out.println(____ );