(interface) simulador vehiculo

/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package vehiculos; public interface vehiculo { public String encender(); public String acelerar(); public String frenar(); public String apagar(); public String modelo (); public int anio(); }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.