Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Sleepy
- {
- class Program
- {
- static void Main(string[] args)
- {
- Sleep Denisa = new Sleep(8);
- Denisa.GoToSleep(5);
- Console.WriteLine(Denisa.GetHappy());
- Denisa.GoToSleep(10);
- Console.WriteLine(Denisa.GetHappy());
- }
- }
- class Sleep
- {
- int enoughtHours;
- int currentHours;
- public Sleep(int enoughtHours)
- {
- this.enoughtHours = enoughtHours;
- }
- public void GoToSleep(int hours)
- {
- this.currentHours += hours;
- }
- public void GetUp(int hours)
- {
- this.currentHours -= hours;
- }
- public bool GetHappy()
- {
- if (currentHours>=enoughtHours)
- {
- return true;
- }
- else
- {
- return false;
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement