Advertisement
Raizekas

Untitled

Mar 9th, 2021
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. public interface SusisiekimoPriemoneI
  2. {
  3. // Galima rašyti public keyword, bet visi interface metodai ir taip yra public
  4. public void greitinti(int kiekGreiteja);
  5.  
  6. public void pakeistiPavara(int kiekKeisti);
  7.  
  8. public void pakeistiVisaKilometraza(double kiekKeisti);
  9.  
  10. public void stabdyti(int kiekStabdyti);
  11.  
  12. void uzkurti();
  13.  
  14. void judeti(double kiekValandu);
  15.  
  16. void uzgesinti();
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement