w3resource

Java: Print the odd numbers from 1 to 99

Java Basic: Exercise-48 with Solution

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

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?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.