Java code to print odd number
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 + " "); } } } }
Here is what the above code is Doing:
1. We have initialized a variable n with value 100.
2. We have used for loop to iterate from 1 to n.
3. Inside the for loop, we have used if statement to check whether the number is odd or not.
4. If the number is odd, we have printed it.
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