CONSTRUCORES _PARAMETROS_2

NUEVO EJEMPLO
CONSTRUC_PARAMETROS_2   MANEJO DE ARGUMENTOS SOBRE EL CONSTRUCTOR
import javax.swing.*;
class coche
{
    int pasajeros;
    int tanque;
    int consumo;
    coche(int p,int t,int c)//
    {
        pasajeros=p;
        tanque=t;
        consumo=c;
    }
    int alcance()
    {
        return tanque * consumo;
    }
}//clase coche
public class CONSTRUCTOR_PARAMETROS_2 {
    public static void main(String args[])
    {
        coche t1=new coche(10,20,5);// 10 pasajeros,20 litros el tanque,5 consume
        coche t2=new coche(6,20,2);
        int re;
        re=t1.alcance();
        System.out.print("PASAJEROS DE T1 "+t1.pasajeros+"\n");
        System.out.print("TANQUE T1 "+t1.tanque+"\n");
        System.out.print("CONSUMO "+t1.consumo+"\n");
        JOptionPane.showMessageDialog(null,"EL ALCANCE DE T1 ES: "+re);
        JOptionPane.showMessageDialog(null,"EL ALCANCE DE T1 ES: "+t1.alcance());//es lo mismo
    }
}
VER VIDEO

0 comentarios:

Publicar un comentario