Find elements

Java code to display all even or odd number from 1 to n

Java code to display all even or odd number from 1 to n

In this tutorial, we will discuss the Java code to display all even and odd number from 1 to n

In this program, we are going to learn about how to find  odd or even number from 1 to given number using the loops in the Java language

display all even or odd number from 1 to n

What is Even or Odd

When the number is divided by 2 and the balance becomes zero and the above number is called as the even number – eg 2,4,6,8,10

and on the other side when it is divided by 2 and balance becomes 1 they are called odd numbers or uneven numbers

In my previous post, I have explained the various ways to check whether the  number is even or odd in Java language

Once This program received the number it will check the given number either odd or even number of given range using loops.

After receiving the input from the user, it is stored in the variable of num and then program divides the value of num by 2 and displays the output

 

Example for Java code to display all even or odd number from 1 to n

Print all even number  using for loop

In this program, we display all even numbers from 1 to n using for loop

 

import java.util.Scanner;
class Even_Oddtill{
public static void main (String args[]){
int i;
Scanner scan=new Scanner(System.in);
//create a scanner object for input

System.out.print("Print all even number until:\n ");


int num=scan.nextInt();//Reads input from user and stored in variable num
System.out.print("Even number from 1 to "+num+" are: \n");

for(i=1; i<=num; i++){//loop for iterate from 1 to maximum
if(i%2==0){//using modular operator for finding even numbers
System.out.print(i+"\n");
}

}
}
}

When the above code is executed, it produces the following results

Print all even number until:
50
Even number from 1 to 50 are:
2
4
6
8
10
12
14
16
18
20
22
24
26
28
30
32
34
36
38
40
42
44
46
48
50

Program 2

Print all odd number using for loop

In this program, we print all odd numbers from 1 to n using for loop

import java.util.Scanner;
class Even_Oddtill1{
public static void main (String args[]){
int i;
Scanner scan=new Scanner(System.in);
//create a scanner object for input

System.out.print("Print all odd number until:\n");


int num=scan.nextInt();//Reads input from user and stored in variable num
System.out.print("Odd number from 1 to "+num+" are: \n");

for(i=1; i<=num; i++){//loop for iterate from 1 to maximum
if(i%2==1)
System.out.print(i+"\n");
}

}
}
}

When the above code is executed, it produces the following results

Print all odd number until:
50
Odd number from i to 50 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

 

Program 3

In this program, we  print all even numbers from 1 to n using while loop

Print all even number  using while loop

import java.util.Scanner;
class Even_Oddtill3{
public static void main (String args[]){
int i;
Scanner scan=new Scanner(System.in);
//create a scanner object for input

System.out.print("Print all even number until:\n");


int num=scan.nextInt();//Reads input from user and stored in variable num
System.out.print("even number from i to "+num+" are: \n");

i=1;
while(i<=num){//loop for iterate from 1 to maximum
if(i%2==0){
System.out.print(i+"\n");
}
 i++;
}
}
}

 

When the above code is executed, it produces the following results

Print all even number until:
50
Even number from 1 to 50 are:
2
4
6
8
10
12
14
16
18
20
22
24
26
28
30
32
34
36
38
40
42
44
46
48
50

 

 

 

Print all odd number using while loop

In this program, we print all odd numbers from 1 to n using while loop

Program 4

import java.util.Scanner;
class Even_Oddtill2{
public static void main (String args[]){
int i;
Scanner scan=new Scanner(System.in);
//create a scanner object for input

System.out.print("Print all odd number until:\n");


int num=scan.nextInt();//Reads input from user and stored in variable num
System.out.print("Odd number from i to "+num+" are: \n");

i=1;
while(i<=num){//loop for iterate from 1 to maximum
if(i%2==1){
System.out.print(i+"\n");
}
 i++;
}
}
}

When the above code is executed, it produces the following results

Print all odd number until:
50
Odd number from i to 50 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

 

 

Program 5

In this program, we print all even numbers from 1 to n using the do-while loop

Print all even number using the do-while loop

import java.util.Scanner;
class Even_Oddtill4{
public static void main (String args[]){
int i;
Scanner scan=new Scanner(System.in);
//create a scanner object for input

System.out.print("Print all even number until:\n");


int num=scan.nextInt();//Reads input from user and stored in variable num
System.out.print("even number from i to "+num+" are: \n");

i=1;
do{               //loop for iterate from 1 to maximum
    if(i%2==0){
System.out.print(i+"\n");
}
i++;
}
while(i<=num);
 
}
}

When the above code is executed, it produces the following results

Print all even number until:
50
Even number from 1 to 50 are:
2
4
6
8
10
12
14
16
18
20
22
24
26
28
30
32
34
36
38
40
42
44
46
48
50

 

 

Program 6

Print all odd number using the do-while loop

In this program, we  print all odd numbers from 1 to n using the do-while loop

import java.util.Scanner;
class Even_Oddtill5{
public static void main (String args[]){
int i;
Scanner scan=new Scanner(System.in);
//create a scanner object for input

System.out.print("Print all odd number until:\n");


int num=scan.nextInt();//Reads input from user and stored in variable num
System.out.print("odd number from i to "+num+" are: \n");

i=1;
do{             //loop for iterate from 1 to maximum
    if(i%2==1){
System.out.print(i+"\n");
}
i++;
}
while(i<=num);
 
}
}

When the above code is executed, it produces the following results

Print all odd number until:
50
Odd number from i to 50 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

 

 

Suggested for you

For loop in Java language

While loop in Java language

Do while loop in Java language

Operator in Java language

Data type in Java language

 

 

 

Cpp program to display all even or odd numbers from 1 to n
C program to display all even or odd number from 1 to n
Karmehavannan

I am Mr S.Karmehavannan. Founder and CEO of this website. This website specially designed for the programming learners and very especially programming beginners, this website will gradually lead the learners to develop their programming skill.

View Comments

  • This is very interesting, You're a very skilled blogger. I have joined your feed
    and look forward to seeking more of your excellent post. Also, I've
    shared your web site in my social networks!

  • Awesome blog! Do you have any helpful hints for aspiring writers?
    I'm hoping to start my own website soon but I'm a little
    lost on everything. Would you advise starting with a free platform
    like Wordpress or go for a paid option? There are so many choices out there that I'm
    completely overwhelmed .. Any tips? Bless you!

Recent Posts

PHP Star Triangle pattern program

PHP Star Triangle pattern program In this tutorial, we will discuss about PHP Star Triangle…

1 month ago

PHP Full Pyramid pattern program

PHP Full Pyramid pattern program In this tutorial, we will discuss about PHP Full Pyramid…

2 months ago

5 methods to add two numbers in Java

5 methods to add two numbers in Java In this tutorial, we will discuss the…

2 months ago

Python Full Pyramid star pattern program

Python full Pyramid star pattern program In this tutorial, we will discuss  the concept of…

5 months ago

Write a function or method to convert C into F -Entered by user

Write a function or method to convert C into F -Entered by the user In…

10 months ago

How to write a function or method to convert Celsius into Fahrenheit

How to write a function or method to convert Celsius into Fahrenheit In this tutorial,…

10 months ago