This repository was created for documentation on how Java works, and is to log all templates and information about determining if values are equal to, less than, or greater than a provided integer in Java. Infrared Studios will be using this technology in their projects and do appreciate contributions.
To use, make sure you have JAVA downloaded, you can download that at the Java Oracle website. Download this repository. Make sure you open the command line in the directory that the EqualLessGreat.java file is in.
java EqualLessGreat.java
Enter any number (-2147483648 to 2147483647):
Type any number, you will recieve an output based on if your number is greater than, less than, or equal to 10. Here is a few examples:
30
The number you entered (30) is greater than 10.
5
The number you entered (5) is less than 10.
10
The number you entered (10) is equal to 10.
-5
The number you entered (-5) is less than 10.
- Integers above 2147483648.
- Integers below -2147483648.
- Equations.