Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Exercises: Print the odd numbers from 1 to 99

Java Basic: Exercise-48 with Solution

Write a Java program to print the 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){
	for (int i = 1; i < 100; i++) {
			if (i % 2 != 0) {
				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.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe