循环结构 :do-while

Posted zmy-520131499

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了循环结构 :do-while相关的知识,希望对你有一定的参考价值。

循环结构 :do-while

循环四要素:
  1.初始化条件
  2.循环条件
  3.循环体
  4.迭代条件

格式:
    1.初始化条件
    do
      3.循环体
      4.迭代条件
    while(2.循环条件);

 

public class DoWhileTest

    public static void main(String[] args)
    
        //需求 :求100以内的奇数,求奇数的个数,求奇数的总和
        int i = 1;//初始化条件
        int sum = 0; //奇数的总和
        int count = 0; //奇数的个数
        do

            //循环体
            if(i % 2 != 0)
                sum += i;
                count++;
                System.out.println(i);
            

            //迭代条件
            i++;
            
        while(i <= 100);//循环条件

        System.out.println("count=" + count + " sum=" + sum);
    

 

do-while和while的区别?

public class DoWhileTest2

    public static void main(String[] args)
        
        boolean boo = false;

        while(boo)
            System.out.println("while");
        

        do
            System.out.println("do-while");
        while(boo);
    
    

 

以上是关于循环结构 :do-while的主要内容,如果未能解决你的问题,请参考以下文章

循环结构 :do-while

while和do-while循环结构

Java入门八 循环结构——for循环while循环do-while循环

JavaScript之三大循环结构(for循环,while循环,do-while循环)

04循环结构(while/do-while/for)

IT兄弟连 Java语法教程 流程控制语句 循环结构语句4