w3resource

Java: Print the odd numbers from 1 to 99


Print Odd Numbers (1-99)

Write a Java program to print odd numbers from 1 to 99. Prints one number per line.

Pictorial Presentation:

Java Basic Exercises: Print the odd numbers from 1 to 99


Sample Solution:

Java Code:

import java.util.*;

public class Exercise48 {
    public static void main(String[] args) {
        // Iterate through numbers from 1 to 99
        for (int i = 1; i < 100; i++) {
            // Check if the number is odd
            if (i % 2 != 0) {
                // Print the odd number
                System.out.println(i);
            }
        }
    }
}

Sample Output:

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

Flowchart:

Flowchart: Java exercises: Print the odd numbers from 1 to 99


For more Practice: Solve these Related Problems:

  • Modify the program to print even numbers instead.
  • Write a program to print prime numbers within a range.
  • Display numbers in reverse order.
  • Find the sum of all printed odd numbers.

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program to display the current date time in specific format.
Next: Write a Java program to accept a number and check the number is even or not.

What is the difficulty level of this exercise?

Based on 68 votes, average difficulty level of this exercise is Hard .

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.