华师一附中OI组

标题: 一个盒子最多装5个苹果,有n个苹果,最少要几个盒子才能装下 [打印本页]

作者: admin    时间: 2018-6-4 19:57
标题: 一个盒子最多装5个苹果,有n个苹果,最少要几个盒子才能装下
有三种方法
作者: JASONZHU    时间: 2018-7-6 22:19
题4.
  1. #include<iostream>
  2. using namespace std;
  3. int x,y;
  4. int main()
  5. {
  6.     cin>>x;
  7.     y=(x-1)/5+1;
  8.     cout<<y;
  9.     return 0;
  10. }


复制代码

作者: 郑子川    时间: 2018-7-12 11:40
  1. #include <iostream>
  2. int a,b;
  3. using namespace std;

  4. int main()
  5. {
  6.     cin>>a;
  7.     b=(a+4)/5;
  8.     cout<<b;
  9. }
复制代码

作者: 高歌岭    时间: 2018-7-27 17:44
  1. #include<iostream>
  2. using namespace std;
  3. int x;
  4. int main()
  5. {
  6. cin>>x;
  7. if(x%5!=0)cout<<x/5+1;
  8. else cout<<x/5;
  9. return 0;
  10. }
复制代码

作者: 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