登录
首页 >  文章 >  java教程

循环时:

来源:dev.to

时间:2025-02-03 20:37:17 107浏览 收藏

有志者,事竟成!如果你在学习文章,那么本文《循环时:》,就很适合你!文章讲解的知识点主要包括,若是你对本文感兴趣,或者是想搞懂其中某个知识点,就请你继续往下看吧~

> 时:

> java时循环是一种控制流语句,用于重复执行语句块,直到给定条件评估为false为止。一旦条件变为false,执行程序中的循环后立即行。 java中的while循环的语法:

while (test_expression) {   

 // statements        

update_expression; 


}


condition is evaluated before each iteration of the loop
if condition is true, the code block inside the while loop will execute
the process repeats until condition is false
java中的while循环执行:>

控件进入ware循环。

测试条件。image description

如果是真的,请执行循环的主体。
  1. 如果false,请退出循环。
  2. 执行身体后,更新循环变量。
  3. >
  4. 从步骤2重复直到条件为错误。
  5. example 1: display numbers from 1 to 5
    
    // program to display numbers from 1 to 5
    
    class main {
      public static void main(string[] args) {
    
        // declare variables
        int i = 1, n = 5;
    
        // while loop from 1 to 5
        while(i <= n) {
          system.out.println(i);
          i++;
        }
      }
    }
    
    output:
    1
    2
    3
    4
    5
    
  6. 任务1:
program:
public class count {

    public static void main(string[] args) {
    int count=1;
        while (count<=5){
        count=count+1;
        system.out.println("count: "+count);
        }
        }
        }

output:
count: 2
count: 3
count: 4
count: 5
count: 6

>任务2:

image description

program:

public class count1 {

    public static void main(string[] args) {
        int count=5;
        while (count>=1) {
        count=count-1;
        {
        system.out.println("count:" +count);
        }
        }
    }
}

output:
count:4
count:3
count:2
count:1
count:0

任务3:

image description

program:
public class count2 {
    public static void main (string args[])
    {
    int count=0;
    while(count<10) {
    count=count+2;
    {
    system.out.println("count:" +count);
    }
    }
    }
}
output:
count:2
count:4
count:6
count:8
count:10

>任务4:

image description

program:
public class Count3 {
    public static void main (String args[])
    {
    int count=1;
    while(count<=10) {
    count=count+2;
    {
    System.out.println("count:" +count);
    }
    }
    }

}
output:

count:3
count:5
count:7
count:9
count:11

参考:

image description

今天关于《循环时:》的内容就介绍到这里了,是不是学起来一目了然!想要了解更多关于的内容请关注golang学习网公众号!

声明:本文转载于:dev.to 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>