KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > SimpleParity


1 public class SimpleParity {
2
3
4     public static void main(String JavaDoc [] args){
5     
6         int i = 9;
7         int j = 8;
8
9         int k = 0;
10         
11         for (int h = 0; h < 10; h++){
12             k = k + j;
13         }
14         
15     }
16 }
17
Popular Tags