10 条题解
- 1
信息
- ID
- 31
- 时间
- 1000ms
- 内存
- 16MiB
- 难度
- 4
- 标签
- 递交数
- 696
- 已通过
- 304
- 上传者
#include<iostream>
using namespace std;
int main()
{
double n;
cin>>n;
if(n<1.3)
{
cout<<60;
}
else
{
cout<<120;
}
return 0;
}
#include<iostream>
using namespace std;
int main()
{
double n;
cin>>n;
if(n<1.3)
{
cout<<60;
}
else
{
cout<<120;
}
return 0;
}
#include <bits/stdc++.h>
using namespace std;
#define ll long long
int main(){
cout<<120;
return 0;
}
#include<bits/stdc++.h>
using namespace std;
int main()
{
double c;
cin >> c;
c = c * 1.0;
if(c < 1.3)
{
cout << "60";
}
else
{
cout << "120";
}
return 0;
}
A
#include <bits/stdc++.h>
using namespace std;
double x;
int main()
{
cin >> x;
if (x >= 1.3)
{
printf("%d", 120);
}
else
{
printf("%d", 60);
}
return 0;
}
谢谢题解
这也是对的哦!点个赞吧❤️
#include <bits/stdc++.h>
using namespace std;
int main(){
cout << "120";
return 0;
}