4 条题解
-
112234洪子昊 (12234洪子昊) LV 8 @ 2021-10-28 21:43:31
#include<iostream>
using namespace std;
int main()
{
int x;
cin>>x;
if(x%6!=0)
cout<<x/6+1;
else
cout<<x/6;
return 0;
}
不走寻常路 -
02024-01-30 18:44:12@
#include<bits/stdc++.h>
using namespace std;
int main()
{
int x;
cin>>x;
if(x%6==0)cout<<x/6;
else cout<<x/6+1;
return 0;
} -
-32021-12-22 10:57:21@
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int x;
cin>>x;
cout<<ceil(x/6.0);
return 0;
} -
-32021-11-30 10:02:31@
#include<iostream>
#include<iomanip>using namespace std;
int main()
{
int x;
cin>>x;
if(x%6!=0)
cout<<x/6+1<<endl;
else
cout<<x/6<<endl;return 0;
}
- 1
信息
- ID
- 2279
- 难度
- 1
- 分类
- (无)
- 标签
- 递交数
- 237
- 已通过
- 162
- 通过率
- 68%
- 上传者