#include <iostream>
using namespace std;
int main() {
float R;
cin >> R;
int result = (R >= 17.00) ? ((R < 17.43) ? 1 : 0) :
(R >= 16.50) ? 3 :
(R >= 16.00) ? 7 :
(R >= 15.50) ? 10 :
(R >= 15.00) ? 15 : 20;
cout << result;
return 0;
}
#include
using namespace std;int main() {
float R;
cin >> R;int result = (R >= 17.00) ? ((R < 17.43) ? 1 : 0) :
(R >= 16.50) ? 3 :
(R >= 16.00) ? 7 :
(R >= 15.50) ? 10 :
(R >= 15.00) ? 15 : 20;cout << result;
return 0;
}
但其實也還好