欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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));
}

}

}

 

2:输入结果。


if 和 while 语句的区别。
            
    
    博客分类: JAVA  
 

3:while是用来循环判断的。

  • if 和 while 语句的区别。
            
    
    博客分类: JAVA  
  • 大小: 38.3 KB