Let's practice the || operator with number comparisons! In this exercise, we'll create a heart rate monitor that checks for abnormal readings.
We want to alert when the heart rate is either too low or too high:
Write a program that:
You'll need to use the || operator to combine two separate conditions: one for low heart rates and one for high heart rates.
Output (Console)