Advertisement
Guest User

Untitled

a guest
Jan 26th, 2020
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.47 KB | None | 0 0
  1. public abstract class Wycieczka {
  2.     public int budzet;
  3.     int osoby;
  4.     int pobyt;
  5.    
  6.     public int obliczModyfikatorKosztu(){
  7.         System.out.println("Podaj liczbę osób jadących na wycieczkę: ");
  8.         Scanner input = new Scanner(System.in);
  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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement