//BoolEval2.java - show boolean evaluation //Include short Circuit import tio.*; class BoolEval2 { public static void main(String[] args) { System.out.println("Type two integers."); int x = Console.in.readInt(); int y = Console.in.readInt(); System.out.println("Result of x < y " + (x < y) ); System.out.println("Result of x > y " + ( x > y)); System.out.println("Result of x == y " + (x ==y)); if( x != 0 && y/x > 0) System.out.println("Result ofy/x " + y/x); //use 3 2, 2 3, 0 3 } } //hand simulate