Advertisement
wingman007

OOPSleepingBeauty

Mar 18th, 2016
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.09 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 Sleepy
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             Sleep Denisa = new Sleep(8);
  14.             Denisa.GoToSleep(5);
  15.             Console.WriteLine(Denisa.GetHappy());
  16.             Denisa.GoToSleep(10);
  17.             Console.WriteLine(Denisa.GetHappy());
  18.  
  19.  
  20.         }
  21.     }
  22.  
  23.     class Sleep
  24.     {
  25.         int enoughtHours;
  26.         int currentHours;
  27.         public Sleep(int enoughtHours)
  28.         {
  29.             this.enoughtHours = enoughtHours;
  30.            
  31.         }
  32.         public void GoToSleep(int hours)
  33.         {
  34.             this.currentHours += hours;
  35.  
  36.         }
  37.         public void GetUp(int hours)
  38.         {
  39.             this.currentHours -= hours;
  40.         }
  41.         public bool GetHappy()
  42.         {
  43.             if (currentHours>=enoughtHours)
  44.             {
  45.                 return true;
  46.             }
  47.             else
  48.             {
  49.                 return false;
  50.             }
  51.         }
  52.  
  53.     }
  54.  
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement