Advertisement
Guest User

Untitled

a guest
Jan 26th, 2020
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.66 KB | None | 0 0
  1. public abstract class Wycieczka {
  2.     Scanner input = new Scanner(System.in);
  3.     public int budzet;
  4.     int osoby;
  5.     int pobyt;
  6.    
  7.     public int obliczModyfikatorKosztu(){
  8.         System.out.println("Podaj liczbę osób jadących na wycieczkę: ");
  9.         int liczbaOsob = input.nextInt();
  10.         System.out.println("Podaj liczbę nocy: ");
  11.         int liczbaNocy = input.nextInt();
  12.         int modKoszt = liczbaOsob * liczbaNocy;
  13.         return modKoszt; }
  14.    
  15.     public int podajBudzet(){
  16.         System.out.println("Podaj ile masz pieniędzy na wycieczkę: ");
  17.         int pieniadze = input.nextInt();
  18.         return pieniadze;
  19.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement