题目内容
一元钱换为1、2、5分的硬币,有多少种兑换方法 int count = 0; for (int fiveCent = 0; ____; fiveCent++) { for (int twoCent = 0; ____; twoCent++) { int oneCent = ____; if (oneCent >= 0) { System.out.println("5分有"+ fiveCent +"个,2分有" + twoCent + "{个,1分有" + oneCent + "个"); count++; } } } System.out.println("有" + count + "种换钱方式");
查看答案
搜索结果不匹配?点我反馈