KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > T15141


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