OPERACIONES METODOS PARAMETROS 1

NUEVO EJEMPLO
import javax.swing.*;
public class PARAMETROS_OPERACIONES {
    public static void  main(String args[])
    {
        operaciones n=new operaciones();
        JOptionPane.showMessageDialog(null,"SUMAR 5 + 10. "+(double)n.suma(5, 10));
        //se sumaron los dos numeros que se pasaron como parametros se convierten
        // a dobles
        System.out.print("SUMA DE 40+ 50 ES: "+n.suma(40, 50));
        //LA RESTA NO SE PUEDE LLAMAR POR SER PRIVADA
        System.out.print("RESTA 10 - 5"+n.resta);//manda error
        //solucion en el programa siguiente
    }
}
class operaciones
{
    public double suma(double a,double b)
    {
        return a+b;
    }
    private double resta(double a,double b)
    {
        return a-b;
    }
}

VIDEO

0 comentarios:

Publicar un comentario