Ozay
0
Q:

int java

Data Type	Size	Stores
byte		1 byte	whole numbers from -128 to 127
short		2 bytes	whole numbers from -32,768 to 32,767
int			4 bytes	whole numbers from -2,147,483,648 to 2,147,483,647
long		8 bytes	whole numbers from -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807
float		4 bytes	fractional numbers; sufficient for storing 6 to 7 decimal digits
double		8 bytes	fractional numbers; sufficient for storing 15 decimal digits
boolean		1 bit	true or false values
char		2 bytes	single character/letter or ASCII values
17
boolean result = true;
char capitalC = 'C';
byte b = 100;
short s = 10000;
int i = 100000;
0
// An int is a primitive data type.
// It is defined as followed:
int name = 5;
// The 5 is the number name holds.
// You can see an int as a box called (in this case) name and inside the box is the number 5.
1

New to Communities?

Join the community