6 条题解
- 1
信息
- ID
- 300
- 时间
- 1000ms
- 内存
- 16MiB
- 难度
- 2
- 标签
- 递交数
- 168
- 已通过
- 103
- 上传者
🚀️ 超级简单
#include<iostream>
using namespace std;
int main()
{
int n;
cin >> n;
if(n>=10)
{
cout<<n*2;
}
else
{
cout<<n*2.2;
}
return 0;
}
#include<bits/stdc++.h>
using namespace std;
double n;
int main()
{
cin>>n;
if(n>=10)
{
n*=2;
}
if(n<10)
{
n*=2.2;
}
cout<<fixed<<setprecision(1)<<n;
return 0;
}
#include<bits/stdc++.h>
using namespace std;
int main()
{
double c;
cin >> c;
if(c < 10)
{
c = c * 2.2;
printf("%.1f",c);
}
else
{
c = c * 2.0;
printf("%.1f",c);
}
return 0;
}
原始算法 A
#include <bits/stdc++.h>
using namespace std;
int main()
{
int a;
double b;
cin >> a;
if (a >= 10)
{
b = a * 2;
}
else
{
b = a * 2.2;
}
cout << fixed << setprecision(1) << b << endl;
return 0;
}