KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > If


1 public class If {
2
3     public static void main(String JavaDoc [] args){
4         boolean x = false;
5         boolean y = true;
6
7         if (y && true){
8             System.out.println(y);
9         }
10     }
11 }
12
Popular Tags