Advertisement
wingman007

C#_OOP_433_1a_Human.cs

Mar 21st, 2014
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.32 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace OOP6
  7. {
  8.     class Human : Introducable
  9.     {
  10.         protected string name;
  11.         protected int age;
  12.         public static string nationality = "Bulgarian";
  13.         public static int counter = 0;
  14.  
  15.         public string Name
  16.         {
  17.             get { return name; }
  18.             set { name = value; }
  19.         }
  20.  
  21.         public int Age
  22.         {
  23.             get { return age; }
  24.             set { age = value; }
  25.         }
  26.  
  27.         public Human(string name, int age)
  28.         {
  29.             this.name = name;
  30.             this.age = age;
  31.             counter++;
  32.         }
  33.  
  34.         public virtual void IntroduceYourSelf()
  35.         {
  36.             Console.WriteLine("I am a human. My name is {0}. I am {1} years old. I am {2}", name, age, nationality);
  37.         }
  38.  
  39.         private string GetMyFeelings()
  40.         {
  41.             if (age > 50)
  42.             {
  43.                 return "Sad";
  44.             }
  45.             else {
  46.                 return "Happy";
  47.             }
  48.         }
  49.  
  50.         public string AreYouHappy()
  51.         {
  52.             if (GetMyFeelings() == "Sad")
  53.             {
  54.                 return "tear";
  55.             }
  56.             else {
  57.                 return "smile";
  58.             }
  59.         }
  60.     }
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement