Advertisement
Guest User

Untitled

a guest
May 30th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.40 KB | None | 0 0
  1.  
  2. class Pojazd
  3. {
  4.     int pojemnoscZbiornika;
  5.     int zuzyciePaliwa100;
  6.     int liczbaPasazerow;
  7.    
  8. Pojazd (int poj, int zuz, int pas)
  9.     {
  10.         pojemnoscZbiornika = poj;
  11.         zuzyciePaliwa100 = zuz;
  12.         liczbaPasazerow = pas;
  13.     }
  14.    
  15. double zapotrzebowanieNaPaliwo (int odleglosc)
  16. {
  17.     return(double)odleglosc/100.0*zuzyciePaliwa100;
  18. }
  19.  
  20.     int zasieg ()
  21.     {
  22.         return pojemnoscZbiornika/zuzyciePaliwa100*100;
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement