INTEGERS - int
An integer data type declared as int is a data type that allows the Java program to accept integer values or what we could call real values, these values range from 2,147,483,647 to -2,147,483,648.
To create a data with integer value your code entry should be:
int x = 92;
Also integer values could be manipulated by carrying out mathematical operations such as addition, multiplication, division, subtraction and many more operations that could be carried out on numbers.
An example is int x = 9+2;
This would give us a total value of 11 in the variable x.
Thanks for following, see you in the next class.