Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
23908 LeoWang 甲流病人初筛 C++ 通过 0 MS 248 KB 363 2023-08-01 23:46:57

Tests(1/1):


#include<iostream> using namespace std; int n,cough,ans; string name; double temp; int main() { cin>>n; for(int i=1;i<=n;i++) { cin>>name>>temp>>cough; if(temp>=37.5&&cough) { cout<<name<<endl; ans++; } } cout<<ans<<endl; return 0; }


测评信息: