Java教程

JAVA今日2021.8.6

本文主要是介绍JAVA今日2021.8.6,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

JAVA while循环

while循环结构

while(布尔表达式){
    //循环内容
}

while01

package JAVASE.struct;

public class while01 {
    public static void main(String[] args) {
        //输出1-100
        int i = 0;
        while (i<100){
            i++;
            System.out.println(i);
        }
    }
}

while02

package JAVASE.struct;

public class while02 {
    public static void main(String[] args) {
        //1+2+3+...+100=
        int i = 0;
        int s = 0;
        while (i<100){
            i++;
            s = s+i;
        }
        System.out.println(s);
    }
}

2021.8.6

这篇关于JAVA今日2021.8.6的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!