int temperatureOutside = 64;
Console.WriteLine(bodyTemp);
public void PrintbodyTemp()
Console.WriteLine("Your body temperature is currently {0}." , bodyTemp);
public void PrintOutdoorTemp()
Console.WriteLine("The temperature outside is currently {0}.", temperatureOutside);
public void ShortsCheck()
if (temperatureOutside <= 60) {
Console.WriteLine("It's cold enough that you should be wearing pants.");
Console.WriteLine("You should be ok in shorts.");