提交时间:2024-09-06 19:56:35

运行 ID: 50666

#include<bits/stdc++.h>//万能头文件 using namespace std; int main() { float l; cin>>l; if(l>=2) { cout<<"优秀。" ; } if(l>=1.6&&l<2){ cout<<"达标。"; } if(l<1.6) { cout<<"不达标。"; } return 0; }