6 条题解
- 1
信息
- ID
- 38
- 时间
- 1000ms
- 内存
- 16MiB
- 难度
- 4
- 标签
- 递交数
- 343
- 已通过
- 156
- 上传者
//什么是赞?哪位大佬可以点给我看一下?求求了❤️
#include <bits/stdc++.h>
using namespace std;
int main(){
int n;
cin >> n;
if(n <= 10)
{
cout << fixed << setprecision(2) << 2.5;
}
if(n > 10)
{
cout << fixed << setprecision(2) << (n - 10) * 1.5 + 2.5;
}
return 0;
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
float x,n;
cin >> n;
if (n <= 10)
{
x = 2.5;
}
if (n > 10)
{
x = 2.5 + (n - 10) * 1.5;
}
cout << fixed << setprecision(2) << x << endl;
return 0;
}
#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
int n;
cin>>n;
if(n<=10)
{
cout<<fixed<<setprecision(2)<<2.5;
}
else
{
cout<<fixed<<setprecision(2)<<(n-10)*1.5+2.5;
}
return 0;
}