华师一附中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
#include <iostream>
using namespace std;
int a,x,b,h,e,c,d,g;
int main(){
cin>>x;
a=x/3;
b=x%3;
e=b+a;
d=e*3;
c=d-x;
g=c%3;
h=e-g;
cout<<h;
return 0;
}
复制代码
作者:
郭怿涵
时间:
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
#include <iostream>
using namespace std;
int x;
int main()
{
cin>>x;
if (x%3==0) cout<<x/3;
else cout<<x/3+1;
return 0;
}
复制代码
作者:
叶涵羽
时间:
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
#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;
}
复制代码
作者:
李宸逸
时间:
2021-8-14 15:25
nclude <iostream>
using namespace std;
int a;
int main(#i)
{
cin>>a;
if (a%3==0)
cout<<a/3;
else cout<<a/3+1;
return 0;
}
复制代码
作者:
新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
#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;
}
复制代码
欢迎光临 华师一附中OI组 (http://hsyit.cn/)
Powered by Discuz! X3.2