/* what is the output for each one of these methods for
* x = -1,0,1,64,65,66,84,85,86,100) */
public class IfExamples
{
public IfExamples() {}
public void Example1(int x)
{
System.out.println("Example1: ");
int A = 85;
int B = 65;
if (x > 0) System.out.println("Not good!");
else if (x > B) System.out.println("OK!");
else if (x > A) System.out.println("Well done!");
else System.out.println("Not a valid input!");
}