public string name { get; set; }
public int age { get; set; }
Console.WriteLine("GPA not changed: GPA must be entered as a non-negative number");
public Student(string iName, int iAge, double iGpa){
public double show_gpa(string adj){
public bool lucky_draw(){
public static void CallFunction(int iInput, ref double dInput){
public static void Main(){
Student me = new Student(strName, iAge, dGPA);
Console.WriteLine(me.show_gpa("regular"));
Console.WriteLine(me.show_gpa("adjusted"));
Console.WriteLine(me.lucky_draw());
Console.WriteLine("=================");
Console.WriteLine("Age:{0}, GPA:{1}",iAge, dGPA);
CallFunction(iAge, ref dGPA);
Console.WriteLine("Age:{0}, GPA:{1}",iAge, dGPA);