Java开发网 Java开发网
注册 | 登录 | 帮助 | 搜索 | 排行榜 | 发帖统计  

您没有登录

» Java开发网 » Java SE 综合讨论区  

按打印兼容模式打印这个话题 打印话题    把这个话题寄给朋友 寄给朋友    该主题的所有更新都将Email到你的邮箱 订阅主题
flat modethreaded modego to previous topicgo to next topicgo to back
作者 Re:求救啊!(编译过关但是却运行得不出结果) [Re:Alerander]
dorrenchen





发贴: 298
积分: 30
于 2003-11-01 07:53 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
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>




话题树型展开
人气 标题 作者 字数 发贴时间
3556 求救啊!(编译过关但是却运行得不出结果) Alerander 957 2003-10-31 10:32
3141 Re:求救啊! why 17 2003-10-31 20:21
3969 Re:求救啊!(编译过关但是却运行得不出结果) dorrenchen 635 2003-11-01 07:53
3189 Re:求救啊!(编译过关但是却运行得不出结果) yb79528 1604 2003-11-04 10:53
3160 Re:求救啊!(编译过关但是却运行得不出结果) ringayumi 24 2003-11-04 11:02

flat modethreaded modego to previous topicgo to next topicgo to back
  已读帖子
  新的帖子
  被删除的帖子
Jump to the top of page

   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