死循环和循环嵌套
Posted xzwx668
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了死循环和循环嵌套相关的知识,希望对你有一定的参考价值。
/*死循环不允许在死循环最后输入输出语句否则会报错
* 循环嵌套*/
public class Deadloop {
public static void main(String[] args) {
while (true){
System.out.println("你是猪");
}
}
}
//嵌套循环
public class break1continue {
public static void main(String[] args) {
for (int i = 0; i < 24; i++) {
for (int j = 0; j < 60; j++) {
System.out.println(i + "时"+j+"分");
}
}
}
}
以上是关于死循环和循环嵌套的主要内容,如果未能解决你的问题,请参考以下文章
Python基础知识进阶(五---2)----程序基本结构简单分支异常处理三大实例分析基本循环结构通用循环构造方法死循环嵌套循环布尔表达式