Java开发网 |
注册 |
登录 |
帮助 |
搜索 |
排行榜 |
发帖统计
|
您没有登录 |
» Java开发网 » Java SE 综合讨论区
打印话题 寄给朋友 订阅主题 |
作者 | Re:求救啊!(编译过关但是却运行得不出结果) [Re:Alerander] |
dorrenchen
发贴: 298 积分: 30 |
于 2003-11-01 07:53
no time to compile it. but this gives you the general idea. <code> /** * For a given dollar amount, this class calculate all sum combinations * by using $10, $5, and $1 bills. */ public class Bills{ public static void main(String args[]){ if(args.length == 0){ System.out.println("enter a dollar amount."); return; } int total = args[0]; for(int i=0; i <= total/10; i++){ for(int j=0; j<=total - i*10; j++){ for(int k=0; k<= total - i*10 - j*5; k++){ if(i*10 + j*5 + k == total) System.out.println(i + "*10 + " + j + "*5 +" + k + " = " + total); } } } }//end main } </code> 最新JDK 5.0 API.chm中文版与大家分享! |
话题树型展开 |
人气 | 标题 | 作者 | 字数 | 发贴时间 |
3665 | 求救啊!(编译过关但是却运行得不出结果) | Alerander | 957 | 2003-10-31 10:32 |
3268 | Re:求救啊! | why | 17 | 2003-10-31 20:21 |
4096 | Re:求救啊!(编译过关但是却运行得不出结果) | dorrenchen | 635 | 2003-11-01 07:53 |
3315 | Re:求救啊!(编译过关但是却运行得不出结果) | yb79528 | 1604 | 2003-11-04 10:53 |
3329 | Re:求救啊!(编译过关但是却运行得不出结果) | ringayumi | 24 | 2003-11-04 11:02 |
已读帖子 新的帖子 被删除的帖子 |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |