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){
	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.



Follow us on Facebook and Twitter for latest update.

Java: Tips of the Day

Java Classes

A Java class is declared with the keywords public class along with a unique class name mirroring its file name. For example, in a file Hello.java in project helloworld:

package helloworld;

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

/**
 * @author seth
 * A GUI hello world.
 */

public class Hello {
        // this is an empty class
}

You can declare variables and functions inside a class. In Java, variables within a class are called fields.

Ref: https://red.ht/3sL3sSl

 





We are closing our Disqus commenting system for some maintenanace issues. You may write to us at reach[at]yahoo[dot]com or visit us at Facebook