5 条题解
- 1
信息
- ID
- 640
- 时间
- 1000ms
- 内存
- 16MiB
- 难度
- 2
- 标签
- 递交数
- 99
- 已通过
- 58
- 上传者
已AC,放心
#include<bits/stdc++.h>
using namespace std;
int main()
{
double n;
cin >> n;
if(n <= 20)
{
cout << fixed << setprecision(2) << n * 1.68;
}
else
{
cout << fixed << setprecision(2) << n * 1.98;
}
return 0;
}
#include<bits/stdc++.h>
using namespace std;
int main()
{
double c;
cin >> c;
if (c <= 20)
{
c = c * 1.68;
printf("%.2f",c);
}
else
{
c = c * 1.98;
printf("%.2f",c);
}
return 0;
}//A
if(n > 20)
{
cout << fixed << setprecision(2) << n * 1.98;
}
else
{
cout << fixed << setprecision(2) << n * 1.68;
}
这是代码的核心判断部分