Advertisement
cesarnascimento

Untitled

Aug 23rd, 2017
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1.  
  2.  
  3. public class Carro{
  4.   String marca;
  5.   String modelo;
  6.   int numPassageiros;
  7.   double capCombustivel;
  8.   double consumoCombustivel;
  9.  
  10.   void exibirAutonomia() {//vai apenas exibir a msg, sem retornar nhm valor
  11.    
  12.     System.out.println("A autonomia do carro é: "+capCombustivel * consumoCombustivel+ "km");
  13.      
  14.   }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement