KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > IfTest2


1 public class IfTest2 {
2
3     public static void main(String JavaDoc [] args){
4         int x = 9;
5         if (x == 8) {
6             x = x + 1;
7         }
8     }
9 }
10
Popular Tags