L1-047. 装睡
题目链接:https://www.patest.cn/contests/gplt/L1-047
思路:建立一个结构体,储存姓名,呼吸率,脉搏,然后检查呼吸率和脉搏是否满足要求,否,输出名字
注意点:无
1 #include<stdio.h> 2 int main() 3 { 4 struct people{ 5 char name[4]; 6 int fx; 7 int mb; 8 }; 9 struct people peo[100]; 10 int N,i; 11 scanf("%d",&N); 12 for(i=0;i<N;i++)scanf("%s %d %d",peo[i].name,&peo[i].fx,&peo[i].mb); 13 for(i=0;i<N;i++) 14 { 15 if((peo[i].fx<15||peo[i].fx>20)||(peo[i].mb<50||peo[i].mb>70)) 16 printf("%s\n",peo[i].name); 17 } 18 return 0; 19 }