martes, 8 de marzo de 2011

PACKAGE TERCERO

package tercero;

import java.io.*;

import javax.swing.JOptionPane;

public class Main {

public static void main(String args[]) throws IOException, Exception

{

int suma=0,n1,n2;

String Sn1,Sn2;

Sn1=JOptionPane.showInputDialog("Ingrese el primer numero");

n1=Integer.parseInt(Sn1);

Sn2=JOptionPane.showInputDialog("ingrese el segundo numero");

n2=Integer.parseInt(Sn1);

suma=n1+n2;

JOptionPane.showMessageDialog(null,"la suma es:"+suma,"resultado",

JOptionPane.PLAIN_MESSAGE );

}

}

No hay comentarios:

Publicar un comentario