Browse - programming tips - java size max of short int long numbersDate: 2010aug11 Language: java Q. What the maximum that a short, int, long can store? A. short -2^15 -1 to 2^15 -1 ~ 32K int -2^31 -1 to 2^31 -1 ~ 2 billion long -2^63 -1 to 2^63 -1 = 9,223,372,036,854,775,808
Add a commentSign in to add a comment | Advertisements:
|