Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Bicicleta
- {
- static int numeroRuedas = 2;
- private string marca;
- private string color;
- public Bicicleta(string marca, string color)
- {
- this.marca = marca;
- this.color = color;
- }
- // métodos mutadores y de acceso
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement