Console.WriteLine("The temp is {0} degrees fahrenheit.",bodyTempNorm);
public void yourTemp(double newTemp){
Console.WriteLine("Your body temperature is currently {0} ", newTemp);
public void currWeather(){
Console.WriteLine("The weather is {0}", currentWeather);
bool goodWeather = currentWeather >= 75;
bool badWeather = currentWeather < 75;
public void shouldShort(){
Console.WriteLine("You should {0}", weather() ? "wear shorts":"not wear shorts");