枚举法 之Java实现凑硬币
【摘要】
问题? 如何利用1元五元十元凑硬币
Scanner in=new Scanner(System.in);
int amout ;
amout=in.nextInt();
for(int on...
问题?
如何利用1元五元十元凑硬币
Scanner in=new Scanner(System.in);
int amout ;
amout=in.nextInt();
for(int one =0;one<=amout;one++)
{
for(int five =0;five<=amout/5;five++)
{
for(int ten =0;ten<=amout/10;ten++)
{
for(int twity =0;twity<=amout/20;twity++)
{
if(one+five*5+ten*10+twity*20==amout)
{
System.out.println(one+"张1元"+five+"张5元"+ten+"张10元"+twity+"张20元");
}
}
}
}
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 1
文章来源: jianguo.blog.csdn.net,作者:坚果前端の博客,版权归原作者所有,如需转载,请联系作者。
原文链接:jianguo.blog.csdn.net/article/details/103172887
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)