3 条题解
-
1
- 1
信息
- ID
- 24
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 5
- 标签
- 递交数
- 133
- 已通过
- 56
- 上传者
using namespace std;
int main()
{
double a,b,c;
cin>>a;
if(a<=30){
cout << fixed << setprecision(2) << a*0.2 << endl;
}else if(a>30 and a<=60){
cout << fixed << setprecision(2) << (a-30)*0.6+6 << endl;
}else if(a>60){
cout<<"NO"<<endl;
}
return 0;
}
洒家打破了五五开的局面╰(°▽°)╯
上过初中的都会做吧