Java - Numbers
Types for storing numbers.Java
Other pieces of example codes:byte x= -5;
double x = 3.14159265359;
int x= -12345;
long x= -82345;
(float)x
short x= -1234;
You can find it in the following collections: data types
Numbers in another programming language: