Find elements

Java program to display all odd or even numbers 1 to n with label

Java program to display all odd or even numbers 1 to n with label

In this article, we will discuss the concept of Java program to display all odd or even numbers 1 to n with label using loops

In this post, we will learn how to find and display odd and even numbers with label using the loop.

Here, we will use for loop, while loop, and do-while loop to find and display odd and even numbers from 1 to n in Java programming language.

Program 1

Java program to find odd and even numbers from 1 to n

Using the for loop

This program allows the user to enter the maximum numbers. It finds and displays even and odd numbers with the label from 1 to entered number using for loop

import java.util.Scanner;
class OddEvenWithLabel{
public static void main(String args[]){
    Scanner scan=new Scanner(System.in); //create a scanner object for input
System.out.print("Enter the random number: ");

int num=scan.nextInt();//get input from the user for num1
System.out.print("Display all odd and even number till "+num);
System.out.print("\n\n");

for(int i=1; i<=num; i++){
    if(i%2==0){
        System.out.print(i+" Is Even");
        System.out.print("\t");
    }
    
    else{
        System.out.print(i+" Is Odd\t");
    }
    
}

}
}

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

program to find the number is odd or even with the label

 

Program 2

This program allows the user to enter the maximum numbers. It finds and displays even and odd numbers with the label from 1 to entered number using while loop.

Using the while loop

import java.util.Scanner;
class OddEvenWithLabel1{
public static void main(String args[]){
    Scanner scan=new Scanner(System.in); //create a scanner object for input
System.out.print("Enter the random number: ");

int num=scan.nextInt();//get input from the user for num1
System.out.print("Display all odd and even number till "+num);
System.out.print("\n\n");

int i=1;
while( i<=num){
    if(i%2==0){
        System.out.print(i+" Is Even");
        System.out.print("\t"); 
    }
    else{
        System.out.print(i+" Is Odd\t");
    }
    i++;
}

}
}

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

a program to find the number is odd or even with the label

 

Using the do-while loop

Program 3

This program allows the user to enter the maximum numbers. It finds and displays even and odd numbers with label 1 to entered number using the do-while loop.

import java.util.Scanner;
class OddEvenWithLabel2{
public static void main(String args[]){
    Scanner scan=new Scanner(System.in); //create a scanner object for input
System.out.print("Enter the random number: ");

int num=scan.nextInt();//get input from the user for num1
System.out.print("Display all odd and even number till "+num);
System.out.print("\n\n");

int i=1;
do{
    if(i%2==0){
        System.out.print(i+" Is Even");
        System.out.print("\t"); 
    }
    else{
        System.out.print(i+" Is Odd\t");
        
}i++;
}while( i<=num);


}
}

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

 

Similar post

C program to find the number is odd or even withusing loops

C++ program to find the number is odd or even withusing loops

Python program to find the number is odd or even withusing loops

 

Suggested for you

Operator in java

Data type and variable in Java

If statement in Java

For loop in Java

while loop in java

Do-while loop in Java

C++ program to display all odd or even numbers 1 to n with label
Python program to display all odd or even numbers 1 to n with label
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.

Recent Posts

PHP Star Triangle pattern program

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

2 months 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