Odd numbers from 1 to n or 1 to 100

Display Odd numbers from 1 to n or 1 to 100

class JavaExample {

   public static void main(String args[]) {

          int n = 100;

          System.out.print("Odd Numbers from 1 to "+n+" are: ");

          for (int i = 1; i <= n; i++) {

             if (i % 2 != 0) {

                    System.out.print(i + " ");

             }

          }

   }

}

Output

Odd Numbers from 1 to 100 are: 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 
31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 
79 81 83 85 87 89 91 93 95 97 99

 

Leave Comment

Important Topics

Title
Run and Compile
Hello World Program
User Input
Add Numbers
Sum of Two Numbers
Even Numbers
Odd numbers from 1 to n or 1 to 100
Even or Odd number
Average of 3 numbers
Fibonacci Series using loops
Generate random number
Largest of three Numbers
Decimal to octal conversion
Quotient and Remainder
Simple Interest
Compound Interest