Home Java How to Find Odd or Even Numbers using Java Swing

How to Find Odd or Even Numbers using Java Swing

42 second read
0
0
1,079

This tutorial will teach you How to Find Odd or Even Numbers using Java Swing.

Paste the Code Inside the Ok Button

int num = Integer.parseInt(txtnum.getText());

if(num % 2 == 0)
{
    JOptionPane.showMessageDialog(this, num + " : is Even ");
}
else
{
    JOptionPane.showMessageDialog(this, num + " : is Odd ");

}

i have attached the video link below. which will do this tutorials step by step.

 

 

 

 

 

    Load More Related Articles
    Load More By admin
    Load More In Java

    Leave a Reply

    Your email address will not be published. Required fields are marked *

    Check Also

    Laravel 11 CRUD Application

    In this tutorial will teach Laravel 11 CRUD Application step by step. Laravel  11 CRUD App…