KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > T15142


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