using System;
public class Person
{
static string status, Weight;
static double GPA, CalcGPA;
static bool SpringBreak;
static int Classes;
public static void Main()
if(Person.Weight=="high")
CalcGPA = 1.15 * GPA;
}
else
CalcGPA = GPA;
Console.WriteLine(CalcWeightedGPA(3.2));
static double CalcWeightedGPA(double GPA)
return GPA*1.15;