KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > T15152


1
2 class T15152 {
3     public static void main(String JavaDoc[] args) {
4         int a = 3, b = 3;
5         System.out.print((--a*a == 4) + " ");
6         System.out.print(((--b)*b == 4) + " ");
7         System.out.print(a == b);
8     }
9 }
10     
Popular Tags