Calculate sum of natural Odd numbers using Java


  1. // SUM OF NATURAL ODD NUMBERS  
  2.   
  3. class ssvsumnat  
  4. {  
  5.  public static void main(String args[])  
  6.  {  
  7.  int num;  
  8.  int sum=0;  
  9.  System.out.println("\n\n\n\t\t'''SUM OF NATURAL ODD NUMBERS 501 to 599'''");  
  10.   for(int i=501;i<600;i++)  
  11.   {  
  12.     if ((i % 2) == 0);  
  13.     sum = sum + i;  
  14.   } // end of class  
  15.  System.out.println("\n\n\tSum of odd numbers between 501 to 599 = " + sum);  
  16.  } // end of main function  
  17. // end of class