华师一附中OI组
标题:
一个盒子最多装5个苹果,有n个苹果,最少要几个盒子才能装下
[打印本页]
作者:
admin
时间:
2018-6-4 19:57
标题:
一个盒子最多装5个苹果,有n个苹果,最少要几个盒子才能装下
有三种方法
作者:
JASONZHU
时间:
2018-7-6 22:19
题4.
#include<iostream>
using namespace std;
int x,y;
int main()
{
cin>>x;
y=(x-1)/5+1;
cout<<y;
return 0;
}
复制代码
作者:
郑子川
时间:
2018-7-12 11:40
#include <iostream>
int a,b;
using namespace std;
int main()
{
cin>>a;
b=(a+4)/5;
cout<<b;
}
复制代码
作者:
高歌岭
时间:
2018-7-27 17:44
#include<iostream>
using namespace std;
int x;
int main()
{
cin>>x;
if(x%5!=0)cout<<x/5+1;
else cout<<x/5;
return 0;
}
复制代码
作者:
Bryan
时间:
2019-4-7 17:21
#include<iostream>
using namespace std;
int a,b,c;
int main()
{
cin>>a;
b=a/5;
c=a%5;
if(c>=1)
b=b+1;
else
b=b;
cout<<b;
return 0;
}
欢迎光临 华师一附中OI组 (http://hsyit.cn/)
Powered by Discuz! X3.2