예제 #1
0
        static void Main(string[] args)
        {
            Student student = new Student("Kudaibergen Adil", "18BD116446", "1"); // creating class student with 3 parametrs

            student.PrintStudent();                                               // urging the printing function
            student.IncreamentYear();                                             // urging increamenting method
            student.PrintStudent();                                               // urging the printing function
        }
예제 #2
0
파일: Program.cs 프로젝트: kiorikim/PP2
        static void Main(string[] args)
        {
            Student first = new Student("Kiori", "18BD123455", 18);

            first.PrintStudent();
        }
예제 #3
0
파일: Program.cs 프로젝트: batiq666/pp2
        static void Main(string[] args)
        {
            Student first = new Student("Batyrbek", "18BD174334", 1);

            first.PrintStudent();
        }