华师一附中OI组

标题: 20210811汤小网课 苹果装箱 [打印本页]

作者: admin    时间: 2021-8-11 11:13
标题: 20210811汤小网课 苹果装箱
3个苹果一个箱子,X个苹果要几个箱子。
作者: Discotry    时间: 2021-8-11 11:20
#include<iostream>
using namespace std;
int x;
int a,b,c;
int main()
{
        cout<<"输入苹果数";
        cin>>x;
        a=3;
        b=x/a;
        c=x%a;
        if(c==0)
        cout<<b;
        else
        b=b+1;
        cout<<b;
       
       
}
作者: 张飓存    时间: 2021-8-11 11:32
#include<iostream>
using namespace std;
int x,a;
int main()
{
cin>>x;
a=x%3;
if(a==0) cout<<x/3;
else    cout<<x/3+1;
return 0;
}


作者: 孙天佑    时间: 2021-8-11 12:26
  1. #include <iostream>
  2. using namespace std;
  3. int a,x,b,h,e,c,d,g;
  4. int main(){
  5. cin>>x;
  6. a=x/3;       
  7. b=x%3;
  8. e=b+a;
  9. d=e*3;
  10. c=d-x;
  11. g=c%3;
  12. h=e-g;
  13. cout<<h;
  14. return 0;
  15. }
复制代码

作者: 郭怿涵    时间: 2021-8-11 13:34
#include<iostream>
using namespace std;
int x;
int a,b,c;
int main()
{
    cout<<"666";
    cin>>x;
    a=3;
    b=x/a;
    c=x%a;
    if(c==0)
    cout<<b;
    else
    b=b+1;
    cout<<b;
}
作者: 朱逸桐    时间: 2021-8-11 13:51
  1. #include <iostream>
  2. using namespace std;
  3. int x;
  4. int main()
  5. {
  6.         cin>>x;
  7.         if (x%3==0) cout<<x/3;
  8.         else cout<<x/3+1;
  9.         return 0;
  10. }
复制代码

作者: 叶涵羽    时间: 2021-8-11 19:39
#include <iostream>
using namespace std;
int apple,box;
int main()
{
        cin>>apple;
        if (apple%3==0) box=apple/3;
        else box=apple/3+1;
        cout<<box;
        return 0;
}
作者: kcy2011    时间: 2021-8-11 20:45
标题: 柯成远作业:3个苹果一个箱子,X个苹果要几个箱子
本帖最后由 kcy2011 于 2021-8-11 20:46 编辑

#include <iostream>
using namespace std;
int a,box;                    
int main()
{
          cin>>a;
        if (a%3==0) box=a/3;
        else box=a/3+1;
        cout<<box;
        return 0;
}
作者: zhaiyucheng    时间: 2021-8-13 21:51
  1. #include <iostream>
  2. using namespace std;
  3. int a,box;
  4. int main()
  5. {
  6.     cin>>a;
  7.     if(a%3==0) box=a/3;
  8.     else box=a/3+1;
  9.     cout<<box;
  10.     return 0;
  11. }
  12.    
复制代码

作者: 李宸逸    时间: 2021-8-14 15:25
  1. nclude <iostream>
  2. using namespace std;
  3. int a;
  4. int main(#i)
  5. {
  6.         cin>>a;
  7.         if (a%3==0)
  8.         cout<<a/3;
  9.         else cout<<a/3+1;
  10.         return 0;
  11. }
复制代码

作者: 新504章紫蕗    时间: 2021-8-14 19:47
#include<iostream>
using namespace std;
int a,b;
int main()
{
        cin>>a;
        b=a/3+(a%3>0);
        cout<<b;
        return 0;
}
作者: 田锦仁    时间: 2021-8-14 21:34
#include <iostream>

using namespace std;

int x;
int y;
int z;
int main()
{
        cin>>x;
        y=x/3;
        z=x%3;
        if(z==0)
        {
                cout<<y;
        }else
        {
                cout<<y+1;
        }
       
        return 0;
}
作者: Nick    时间: 2021-8-16 22:32
  1. #include<iostream>
  2. using namespace std;
  3. int apple,box;
  4. int main()
  5. {
  6.         cin>>apple;
  7.         if (apple%3==0) box=apple/3;
  8.         else box=apple/3+1;
  9.         cout<<box;
  10.         return 0;
  11. }
复制代码





欢迎光临 华师一附中OI组 (http://hsyit.cn/) Powered by Discuz! X3.2