martes, 8 de marzo de 2011

PACKAGE SEGUNDO

package segundo;
   
import java.io.*;

public class Main {

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

InputStreamReader isr= new InputStreamReader(System.in);

BufferedReader br= new BufferedReader(isr);

int suma=0,n1,n2;

System.out.print("ingrese el primer numero");

n1=Integer.parseInt(br.readLine());

System.out.print("ingrese el segundo numero");

n2=Integer.parseInt(br.readLine());

suma=n1+n2;

System.out.println("resultado:"+suma);

}

}

No hay comentarios:

Publicar un comentario