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));
}
}
class operaciones
{
public double sumar(double a, double b)//MISMO NOMBRE DOS PARAMETROS {
return a+b;
}
public double sumar(double a, double b , double c)//MISMO NOMBRE TRES PARAMETROS
{
return a+b+c;
}
}
Suscribirse a:
Enviar comentarios (Atom)
0 comentarios:
Publicar un comentario