1 public class LitTest {2 3 public static void main(String [] args) {4 5 int i = 0;6 double j = 0.9;7 char x = 'c';8 byte b = 8;9 short s = 9;10 long l = 10000;11 float f = 0.99F;12 String st = "this";13 }14 }15