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,250

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

Paste the Code Inside the Ok Button

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
int num = Integer.parseInt(txtnum.getText());
if(num % 2 == 0)
{
JOptionPane.showMessageDialog(this, num + " : is Even ");
}
else
{
JOptionPane.showMessageDialog(this, num + " : is Odd ");
}
int num = Integer.parseInt(txtnum.getText()); if(num % 2 == 0) { JOptionPane.showMessageDialog(this, num + " : is Even "); } else { JOptionPane.showMessageDialog(this, num + " : is Odd "); }
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.

 

 

 

 

 

    Check Also

    Laravel 12 CRUD Application

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