Calculate The Number Between 100 And 200 Divisable By 7 Program Using Java

  1. //THE NUMBERS BETWEEN 100 AND 200 divisable by 7  
  2.   
  3. public class ssva04  
  4. {  
  5.   public static void main(String arg[])  
  6.   {  
  7.     int i,j;  
  8.     j=0;  
  9.   
  10.     System.out.println("THE NUMBERS BETWEEN 100 AND 200");  
  11.   
  12.     for (i=100;i<=200;i++)  
  13.     {  
  14.       if (i % 7 == 0)  
  15.       {  
  16.          j=j+1;  
  17.          System.out.println("The " + j + " st Number is:   " + i);  
  18.       }  
  19.    }  
  20. }  
  21. }  
  22.   
  23.