KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > T15151


1
2 class T15151 {
3     public static void main(String JavaDoc[] args) {
4         int a = 1, b = 1;
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