#K10791. Fever Detector
Fever Detector
Fever Detector
You are given the body temperature records of several participants throughout the day. For each participant, determine whether they had a fever at least once. A fever is defined as having a temperature greater than or equal to \(100.4\) degrees Fahrenheit.
The input begins with an integer \(T\) representing the number of participants. For each participant, the first number is an integer \(N\) which indicates how many temperature readings follow. The next \(N\) numbers are the temperature recordings (in Fahrenheit) for that participant.
Your task is to output \(T\) lines, each line containing either "True" if the corresponding participant had a fever at least once, or "False" if not.
inputFormat
The first line contains an integer \(T\) - the number of participants. Each of the following \(T\) lines starts with an integer \(N\) (the number of temperature readings for that participant), followed by \(N\) space-separated floating-point numbers representing the temperature recordings.
Example:
4 3 98.6 99.1 100.2 3 97.5 98.7 101.3 3 99.9 100.5 99.8 4 98.4 97.6 99.0 98.2
outputFormat
Output \(T\) lines. The \(i\)-th line should be "True" if the \(i\)-th participant had a temperature reading \(\geq 100.4\), and "False" otherwise.
## sample4
3 98.6 99.1 100.2
3 97.5 98.7 101.3
3 99.9 100.5 99.8
4 98.4 97.6 99.0 98.2
False
True
True
False
</p>