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 World3a3b
- {
- class Person
- {
- // private string _sfgsdjhfgname;
- /*
- public string Name { get; set; }
- public int Age { get; set; }
- */
- private string name;
- private int age;
- private double temp;
- private static int counter = 0;
- public const double PI = 3.14; // = 3.14
- public readonly double only4Read = 2.71;
- private static string nationality = "Bulgarian";
- public static string Nationality // {get; set;}
- {
- get { return nationality; }
- set { nationality = value; }
- }
- public static int Counter
- {
- get { return counter; }
- // private set { counter = value; }
- }
- public string Name
- {
- get { return name; }
- set { name = value; }
- }
- public int Age
- {
- get { return age; }
- set { age = value; }
- }
- public double Balance
- {
- get { return 3.14 * age; }
- }
- static Person()
- {
- nationality = "Albanian";
- }
- public Person()
- : this("Default", 0)
- {
- // this.name = "Default";
- // this.age = 0;
- }
- // workign horse
- public Person(string name, int age)
- {
- this.name = name;
- this.age = age;
- counter++;
- // Counter++;
- only4Read = 5.4 * age;
- }
- public Person(int age1, string name1)
- :this(name1, age1)
- {
- // this.name = name1;
- // this.age = age1;
- }
- public void IntroduceYourSelf()
- {
- Console.WriteLine("My name is {0}. I am {1} yers old. My balance is {2}. I am {3}", name, age, Balance, nationality);
- }
- public static double CalculateNationalIncome()
- {
- return 10000.0 * counter;
- }
- /*
- public string GetName()
- {
- return name;
- }
- public void SetName(string name)
- {
- this.name = name;
- }
- public int GetAge()
- {
- return age;
- }
- public void SetAge(int age)
- {
- this.age = age;
- }
- */
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement