首页 > 编程语言 > 详细

JAVA今日2021.8.7

时间:2021-08-07 23:15:38      阅读:25      评论:0      收藏:0      [点我收藏+]

JAVA do while

do while 格式

do{
    //代码语句
}while(布尔表达式)

do while01

package JAVASE.struct;

public class DoWhile01 {
    public static void main(String[] args) {
        int i = 0;
        int s = 0;
        do {
            s = s + i;
            i++;
        }while(i<=100);
        System.out.println(s);
    }
}

2021.8.7

JAVA今日2021.8.7

原文:https://www.cnblogs.com/Walf1234/p/15113397.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!