Guest User

Untitled

a guest
Dec 10th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. package programm;
  2.  
  3. import newobject.Avtobus;
  4.  
  5. public class Programm {
  6.  
  7. public static void main(String[] args) {
  8. Avtobus bus = new Avtobus("Calculator");
  9.  
  10. bus.setName(666); //1.Номер автобуса
  11. bus.setTheCapacityOfTheBus(40); //2.Вместимость автобуса
  12. bus.setCostOfTravel(25); //3.Цена поездки
  13. bus.setNumberOfStops(10); //4.Количество Остановок
  14. int a = (int) (Math.random()*40);
  15. bus.setPassengersWent((int) a); //5.Пассажиров зашло
  16. int b = (int) (Math.random()*40);
  17. if(a > b && a == b){
  18. bus.setPassengersLeft((int) b); //6.Пассажиров вышло
  19. }
Add Comment
Please, Sign In to add comment