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;
- namespace OOP6
- {
- class Human : Introducable
- {
- protected string name;
- protected int age;
- public static string nationality = "Bulgarian";
- public static int counter = 0;
- public string Name
- {
- get { return name; }
- set { name = value; }
- }
- public int Age
- {
- get { return age; }
- set { age = value; }
- }
- public Human(string name, int age)
- {
- this.name = name;
- this.age = age;
- counter++;
- }
- public virtual void IntroduceYourSelf()
- {
- Console.WriteLine("I am a human. My name is {0}. I am {1} years old. I am {2}", name, age, nationality);
- }
- private string GetMyFeelings()
- {
- if (age > 50)
- {
- return "Sad";
- }
- else {
- return "Happy";
- }
- }
- public string AreYouHappy()
- {
- if (GetMyFeelings() == "Sad")
- {
- return "tear";
- }
- else {
- return "smile";
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement