-->
当前位置:首页 > 题库

PROGRAMMING:Laboratory diagnosis

Luz5年前 (2021-05-10)题库343
###Description
The following table is the reference range of normal values for routine blood test and the clinical significance of abnormal test values
![ 1.jpg](~/96d0b787-50be-4773-b95f-1fd20c7cffda.jpg)
Given a test sheet, judge whether all the indexes are normal. If not, count several abnormal items. The value on the test sheet must be strictly within the normal reference value range before it can be regarded as normal. The range of normal reference value includes the boundary, that is, it is normal to fall on the boundary.
###Input
![ 2.jpg](~/b5b20034-2733-4b81-93ec-199ae266330d.jpg)
###Output
For each group of test data, output one line. If all inspection items are normal, output: normal; Otherwise, output the number of abnormal items.
###Sample input
```in
two
female 4.5 4.0 115 37 200
male 3.9 3.5 155 36 301
```
###Sample output
```out
normal
three
```
###Title Source
Note: selected from nyoj website, online address: http://sdau.openjudge.cn/c/006/






answer:If there is no answer, please comment