//标号 与循环中的break 连用: 如: break OUT;

来源:互联网 发布:护盾数据恢复软件下载 编辑:程序博客网 时间:2024/06/05 19:21

//通过标号可以选择循环中满足条件的第一条记录,后面的就都不执行了。
public static void main(String[] args) {
System.out.println(“输入一个数字”);
Scanner in = new Scanner(System.in);
int amount = in.nextInt();
int count =0;
//标号 与循环中的break 连用: 如: break OUT;
OUT:
for(int one=0;one<=amount;one++){
for(int five=0;five<=amount/5;five++){
for(int ten=0;ten<=amount/10;ten++){
for(int twenty=0;twenty<=amount/20;twenty++){
for(int fifty=0;fifty<=amount/50;fifty++){
for(int hundred=0;hundred<=amount/100;hundred++){
if(one+five*5+ten*10+twenty*20+fifty*50+hundred*100==amount){
System.out.println(one+”张1元,”+
five+”张5元,”+
ten+”张10元,”+
twenty+”张20元,”+
fifty+”张50元,”+
hundred+”张100元,”
);
count++;
break OUT;
}

                        }                    }                }            }        }    }    System.out.println("一共有"+count+"种");
原创粉丝点击