Advertisement
wingman007

OOPWarcraftElevator

Mar 18th, 2016
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.57 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace elevator
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             Elevator elevator = new Elevator(10);
  14.             elevator.goUp(4);
  15.             Console.WriteLine(elevator.getFloor());
  16.             elevator.goUp(2);
  17.             Console.WriteLine(elevator.getFloor());
  18.             elevator.goDown(6);
  19.             Console.WriteLine(elevator.getFloor());
  20.         }
  21.     }
  22.  
  23.     class Elevator
  24.     {
  25.         int maxFloors;
  26.         int startFloor;
  27.         int currentFloor;
  28.  
  29.         public Elevator()
  30.         {
  31.             this.startFloor = 1;
  32.             this.currentFloor = 1;
  33.         }
  34.  
  35.         public Elevator(int maxFloors)
  36.         {
  37.             this.maxFloors = maxFloors;
  38.             this.currentFloor = 1;
  39.         }
  40.  
  41.         public void goUp(int numberFloors)
  42.         {
  43.             if (currentFloor + numberFloors > maxFloors)
  44.             {
  45.                 this.currentFloor = maxFloors;
  46.             }
  47.             else
  48.             {
  49.                 this.currentFloor += numberFloors;
  50.             }
  51.         }
  52.  
  53.         public void goDown(int numberFloors)
  54.         {
  55.             if (currentFloor - numberFloors < 1)
  56.             {
  57.                 this.currentFloor = 1;
  58.             }
  59.             else
  60.             {
  61.                 this.currentFloor -= numberFloors;
  62.             }
  63.         }
  64.  
  65.         public int getFloor()
  66.         {
  67.             return this.currentFloor;
  68.         }
  69.     }
  70. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement