using System;
public class Student
{
// fields
static string Status;
static double GPA = 3.2;
static bool SpringBreak;
static int NumClasses;
//method
public double CalcWeightedGPA (string Weight)
if (Weight=="high")
GPA = GPA * 1.15;
Console.WriteLine("GPA is: " + GPA);
return GPA;
}
else
public void Main()
string Weight;
Console.WriteLine("Enter if a student's GPA high or low:");
Weight=Console.ReadLine();
CalcWeightedGPA(Weight);