5 条题解
- 1
信息
- ID
- 53
- 时间
- 1000ms
- 内存
- 16MiB
- 难度
- 4
- 标签
- 递交数
- 243
- 已通过
- 111
- 上传者
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
double n;
cin >> n;
if(n > 15)
{
cout << fixed << setprecision(2) << 10 + (n - 15) / 2.5;
}
else
{
cout << fixed << setprecision(2) << n / 1.5;
}
return 0;
}已AC
#include <bits/stdc++.h>
using namespace std;
int main()
{
double a,b,c;
cin>>a;
b=a/1.5;
if(b>10)
{
b=10;
c=a-15;
printf("%.2f",b+c/2.5);
return 0;
}
printf("%.2f",b);
return 0;
}