| public class BigConstants | |
| { | |
| public static void main(String[] args) { | |
| int i = 1234567890; | |
| long l = 1234567890123456789L; | |
| float f = -1.23456789e10F; | |
| double d = 1.23456789e100; | |
| System.out.println("i = " + i); | |
| System.out.println("l = " + l); | |
| System.out.println("f = " + f); | |
| System.out.println("d = " + d); | |
| } | |
| } |