循环结构(三种)
- while 循环
- do...while 循环
- for 循环
- 在Java 5 中引入了一种主要用于数组的增强型 for 循环。
while循环
-
while 是最基本的循环,它的结构为:
while(布尔表达式){ //循环内容 }
- 只要布尔表达式为true,循环就会一直执行下去。
- 我们大多数情况是会让循环停止下来的,我们需要一个让表达式失效的方式来结束循环。
- 少部分情况需要循环一直执行下去,比如服务器的请求响应监听等。
- 循环条件一直为true就会造成无限循环【死循环】,我们正常的业务编程中应该尽量避免死循环。会影响程序性能或者程序卡死奔溃。
package com.kuang.struct;
public class WhileDemo01 {
public static void main(String[] args) {
//输出1~100
int i = 0;
while(i<100) {
i++;
System.out.println(i);
}
}
}
package com.kuang.struct;
public class WhileDemo02 {
public static void main(String[] args) {
//死循环,尽量避免
while (true){
//等待客户端连接
//定时检查
//。。。。。
}
}
}
package com.kuang.struct;
public class WhileDemo03 {
public static void main(String[] args) {
//计算1+2+3+..+100=?
//高斯的故事
//高斯定理
int i = 0;
int sum = 0;
while(i<=100){
sum = sum + i;
i++;
}
System.out.println(sum);
}
}
do...while循环
-
对于 while 语句而言,如果不满足条件,则不能进入循环。但是有时候我们需要即使不满足条件,也执行一次。
-
do... while 循环和 while 循环相似,不同的是,do...while 循环至少会执行一次。
do{ //代码语句 }while(布尔表达式)
-
while 和 do...while的区别:
- while先判断后执行。do...while 是先执行后判断!
- do...while 总是保证循环体会被至少执行一次!这是他们的主要差别。
package com.kuang.struct;
public class DoWhileDemo01 {
public static void main(String[] args) {
int i = 0;
int sum = 0;
do {
sum = sum + i;
i++;
}while (i<=100);
System.out.println(sum);//5050
}
}
package com.kuang.struct;
public class DoWhileDemo02 {
public static void main(String[] args) {
int a = 0;
while (a<0){
System.out.println(a);
a++;
}//无
System.out.println("==================");
do {
System.out.println(a);
a++;
}while (a<0);//输出0
}
}
for循环
-
虽然所有循环结构都可以用while 和 do...while 表示,但 Java 提供了另一种语句——for循环,使一些循环结构变得简单。
-
for循环语句是支持迭代的一种通用结构,是最有效,最灵活的循环结构。
-
for循环执行的次数是在执行前就确定。语法格式如下:
for(初始化;布尔表达式;更新){ //代码语句 }
package com.kuang.struct;
public class ForDemo01 {
public static void main(String[] args) {
//while循环
int a = 1;//初始化条件
while(a<100){//条件判断
System.out.println(a);//循环体
a+=2;//迭代
}
System.out.println("while循环结束!");
//for循环
for (int i = 1;i<=100;i++){
System.out.println(i);
}
System.out.println("for循环结束");
// for (int i = 0; i < 100; i++) {}
// 快捷键 100.for 回车
for( ; ; ){
}//合法
}
}
package com.kuang.struct;
public class ForDemo02 {
public static void main(String[] args) {
//练习1:计算0到100之间的奇数和偶数的和
int oddSum = 0; //奇数和
int evenSum = 0; //偶数和
for (int i = 0; i < 100; i++) {
if (i % 2 != 0) { //判断是否为奇数
oddSum += i;
} else { //判断是否为偶数
evenSum += i;
}
}
System.out.println("奇数的和" + oddSum);//输出2500
System.out.println("偶数的和" + evenSum);//输出2450
}
}
package com.kuang.struct;
public class ForDemo03 {
public static void main(String[] args) {
//练习2:用while或者for循环输出1~1000之间能被5整除的数,并且每行输出3个
for (int i = 0; i <= 1000; i++) {
if(i%5==0){
System.out.print(i+" ");
}
if(i%(5*3)==0){ //每行
System.out.println();
//System.out.print("
");//换行
}
}
//println 输出完会换行
//print 输出完不会换行
}
}
/*输出结果
E:JavaSEoutproduction基础语法 com.kuang.struct.ForDemo03
0
5 10 15
20 25 30
35 40 45
50 55 60
65 70 75
80 85 90
95 100 105
110 115 120
125 130 135
140 145 150
155 160 165
170 175 180
185 190 195
200 205 210
215 220 225
230 235 240
245 250 255
260 265 270
275 280 285
290 295 300
305 310 315
320 325 330
335 340 345
350 355 360
365 370 375
380 385 390
395 400 405
410 415 420
425 430 435
440 445 450
455 460 465
470 475 480
485 490 495
500 505 510
515 520 525
530 535 540
545 550 555
560 565 570
575 580 585
590 595 600
605 610 615
620 625 630
635 640 645
650 655 660
665 670 675
680 685 690
695 700 705
710 715 720
725 730 735
740 745 750
755 760 765
770 775 780
785 790 795
800 805 810
815 820 825
830 835 840
845 850 855
860 865 870
875 880 885
890 895 900
905 910 915
920 925 930
935 940 945
950 955 960
965 970 975
980 985 990
995 1000
进程已结束,退出代码为 0*/
package com.kuang.struct;
public class ForDemo04 {
public static void main(String[] args) {
//1.先打印第一行
//2.嵌套把1.固定
//3.去掉重复
//4.调整样式
for (int j = 1; j <= 9; j++) {
for (int i = 1; i <= j; i++) {
System.out.print(j + "*" + i + "=" + (j * i)+" ");
}
System.out.println( );
}
}
}
/*输出结果
1*1=1
2*1=2 2*2=4
3*1=3 3*2=6 3*3=9
4*1=4 4*2=8 4*3=12 4*4=16
5*1=5 5*2=10 5*3=15 5*4=20 5*5=25
6*1=6 6*2=12 6*3=18 6*4=24 6*5=30 6*6=36
7*1=7 7*2=14 7*3=21 7*4=28 7*5=35 7*6=42 7*7=49
8*1=8 8*2=16 8*3=24 8*4=32 8*5=40 8*6=48 8*7=56 8*8=64
9*1=9 9*2=18 9*3=27 9*4=36 9*5=45 9*6=54 9*7=63 9*8=72 9*9=81
进程已结束,退出代码为 0
*/