KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > IfTest3


1 public class IfTest3 {
2
3     public static void main(String JavaDoc [] args){
4         int i = 9;
5         int j = 5;
6         
7         if (i < 10) {
8             j++;
9         }
10         else {
11             j--;
12         }
13     }
14 }
15
Popular Tags