LoslegenKostenlos starten

Conditioning on body temperature

Let's say you were tasked with programming a diagnostic tool that assesses a patient's body temperature. You want to print warnings if the temperature is too high or too low and a reassuring message if it is just right. In this exercise, you'll write a conditional expression to aid the diagnosis.

The float body_temp, which is the body temperature in degrees Celsius, is available in your environment.

Diese Übung ist Teil des Kurses

<Kurs>Introduction to Julia</Kurs>
Kurs ansehen

Übungsanweisungen

  • Print the message "Seems a little cold" if body_temp is less than 35.9.
  • Print the message "Might be a fever" if body_temp is more than 37.6.
  • Print the message "The patient's temperature seems normal" otherwise.

Interaktive praktische Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

# Print a warning message if the temperature is too low
____
	println("Seems a little cold")
# Print a warning message if the temperature is too high
____
    println("Might be a fever")
# Print the message if the temperature is normal
____
	println("The patient's temperature seems normal")
# Finish the conditional block
____

println("temperature = $body_temp")
Code bearbeiten und ausführen