NUEVO EJEMPLO
import javax.swing.*;
public class PARAMT3
{
public static void main(String args[])
{
operaciones b1=new operaciones();
JOptionPane.showMessageDialog(null, "LA SUMA DE DOS NUMEROS ES: "+b1.sumar(20, 30));
JOptionPane.showMessageDialog(null,"LA SUMA DE TRES NUMEROS ES: "+b1.sumar(30, 40, 30));
JOptionPane.showMessageDialog(null,"LA RAIZ DE DOS NUMEROS ES: "+b1.raiz(5, 20));
}
}
class operaciones
{
public double sumar(double a, double b)
{
return a+b;
}
public double sumar(double a, double b , double c)
{
return a+b+c;
}
public double raiz(double a, double b)
{
double r;
r=a+b;
return r;
}
}
Suscribirse a:
Enviar comentarios (Atom)
0 comentarios:
Publicar un comentario