if 和 while 语句的区别。 博客分类: JAVA
程序员文章站
2024-02-14 21:20:04
...
1:代码
写道
public class Test {
public static void main(String[] args) {
int whileInteger = 3,ifInteger = 3;
while(--whileInteger>=0){
System.out.println(String.format("while:第%s次打印", whileInteger));
}
if(--ifInteger>=0){
System.out.println(String.format("if:第%s次打印", ifInteger));
}
}
}
public static void main(String[] args) {
int whileInteger = 3,ifInteger = 3;
while(--whileInteger>=0){
System.out.println(String.format("while:第%s次打印", whileInteger));
}
if(--ifInteger>=0){
System.out.println(String.format("if:第%s次打印", ifInteger));
}
}
}
2:输入结果。
3:while是用来循环判断的。
推荐阅读
-
if 和 while 语句的区别。 博客分类: JAVA
-
Oracle Integer和Java Integer 数据的取值范围。 博客分类: JAVA
-
Oracle Integer和Java Integer 数据的取值范围。 博客分类: JAVA
-
if 和 while 语句的区别。 博客分类: JAVA
-
java中的Iterator和Iterable 区别 博客分类: JVM javaIteratorIterable
-
apache和tomcat的区别 博客分类: Web基础 web
-
JAVA面向对象概念之抽象与接口的意思以及区别 博客分类: Java
-
localStorage和sessionStorage的区别 博客分类: html
-
localStorage和sessionStorage的区别 博客分类: html
-
一个可一输入的Select(select和text组合) 博客分类: java Yahoo