This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Carro { | |
private String modelo; | |
private String marca; | |
private Float velocidade; | |
public Carro() { | |
System.out.println("iniciando novo carro"); | |
this.velocidade = 0; | |
} | |
public Carro(String marca) { |