Calculate natural numbers that are divide by 7 & 8 using Java


  1. //NATURALS NUMBERS THAT ARE DIVISIBLE BY 7 & 8   
  2.   
  3. import java.io.*;  
  4.   
  5. class ssvnat  
  6. {  
  7.     public static void main(String arg[]) throws IOException  
  8.     {  
  9.         int i,a,b,s=0,start,end;  
  10.         BufferedReader br=new BufferedReader(new InputStreamReader(System.in));  
  11.         System.out.println("\n\t\t*** NATURALS NUMBERS THAT ARE DIVISIBLE BY 7 & 8 *** \n");   
  12.         System.out.print("Enter the number will be started : ");  
  13.         start=Integer.parseInt(br.readLine());  
  14.         System.out.print("Enter the number to be end       : ");  
  15.         end=Integer.parseInt(br.readLine());  
  16.         for(i=start;i<=end;i++)  
  17.         {  
  18.             a=i%7;  
  19.             b=i%8;  
  20.             if((a==0)&&(b==0))  
  21.             {  
  22.                 System.out.print("\t" + i);  
  23.                 s=s+i;  
  24.             }  
  25.         }  
  26.         System.out.print("\n\nThe Sum of Numbers that are divisible by 7 and 8 :  " + s);  
  27.        System.out.println();  
  28.     }  
  29. }  
  30.           
  31.