Program:
import javax.swing.*;
class sw
{
public static void main(String ar[]) throws Exception
{
int i=10;
int j=20;
JOptionPane.showInputDialog("This is a simple program using GUI");
JOptionPane.showMessageDialog(null,"The sum is:"+(i+j));
}
}
Output:
import javax.swing.*;
class sw
{
public static void main(String ar[]) throws Exception
{
int i=10;
int j=20;
JOptionPane.showInputDialog("This is a simple program using GUI");
JOptionPane.showMessageDialog(null,"The sum is:"+(i+j));
}
}
Output:
0 comments:
Post a Comment