提交时间:2024-11-30 10:51:19

运行 ID: 856

#include<bits/stdc++.h> using namespace std; int main(){ int x; cin>>x; if(x>=20) { cout<<1.98*x; } else { cout<<1.68*x; } }