1 2 3 4 5 6 7 8 9 10 11 12 13 |
public class Oops { public static void main(String[] args) { int x; System.out.println("x is" x); int x = 15.2; // set x to 15.2 System.out.println("x is now + x"); int y; // set y to 1 more than x y = int x + 1; System.out.println("x and y are " + x + and + y); } } |
answer on next slide...
+
between "x is"
and x
x
before assigning it a
value
15.2
into a variable of
type int
"
mark should be between now
and +
int
here
y
should be same type as x
y
to be 1 more
than x
(should not write the word int
here)
and
should be in quotes with surrounding spaces
public class Oops { public static void main(String[] args) { double x = 0.0; System.out.println("x is" + x); x = 15.2; // set x to 15.2 System.out.println("x is now " + x); double y; // set y to 1 more than x y = x + 1; System.out.println("x and y are " + x + " and " + y); } }