producto y suma de dos numeros
import java.io.*;
class propuesto3producysuma{
public static void main(String[]args) throws IOException
{
BufferedReader in=new BufferedReader (new
InputStreamReader(System.in));
<!--more-->
System.out.print("ingrese el primer numero positivo:
");
int a=Integer.parseInt(in.readLine());
System.out.print("ingrese el segundo número
positivo:");
int b=Integer.parseInt(in.readLine());
int c;
if ((a>0) &&(b>0))
{ c=a*b;
System.out.println("el producto de dichos numeros
es:"+c);
}
else {
c=a+b;
System.out.println("la suma de dichos numeros
es:"+c);
}
}
}
No hay comentarios:
Publicar un comentario