1. 循环结构
话说唐僧师徒四人还在21世纪继续闯关,一天,师徒四人来到数字王国:
第一关:Boss叫傻乎乎的唐僧叫500声帅哥。
可是唐僧平时吃素,体力不好,叫200声就晕了,咋办,悟空马上变了个复读机出来,录音,播放。
第二关:Boss觉得唐僧好欺负再叫他从1数到100。此时复读机用不上来了,咋办?
第三关:求100以内正整数和?
于是,唐僧算1到25的和,悟空算26到50的和,八戒算51到75的和,沙僧算76到100的和。
第四关:求1000以内正整数和?
于是,唐僧算1到250的和,悟空算251到500的和,八戒算501到750的和,沙僧算751到1000的和。
第五关:求10000以内正整数和?
ブプヘベ崩溃ingペホボポ。。。。。
此时就得使用循环来解决问题了,在满足循环条件的情况下,重复执行某一段代码,这段被重复执行的代码被称为循环体语句。
while语句
do while语句
for语句
注:三种循环结构可以完成相同的功能,仅仅只是语法上有差异。
案例1:叫500声帅哥,打印500次帅哥
案例2:从1数到100,打印从1~100
案例3:帮大圣解决问题,计算100以内的正整数和
1.1. while(重点)
while(boolean表达式)
{
循环体
}
特点:先判断boolean表达式:
若为false,跳过循环体,
若为true,执行循环体,执行完,再重新判断boolean表达式。
需求1:打印10行帅哥
public class WhileDemo1 {
public static void main(String[] args) {
System.out.println("begin...");
int count = 0;
while(count < 10) {
System.out.println("帅哥");
count++;
}
System.out.println("ending...");
}
}
需求2:从0打印到100
public class WhileDemo2 {
public static void main(String[] args) {
System.out.println("begin...");
int count = 1;
while (count < 101) {
System.out.println(count);
count++;
}
System.out.println("ending...");
}
}
需求3:计算100以内正整数之和
public class WhileDemo3 {
public static void main(String[] args) {
System.out.println("begin...");
int total = 0;//最终之和,初始为0
int count = 1;
while (count < 101) {
total = total+count;
count++;
}
System.out.println(total);
System.out.println("ending...");
}
}
1.2. do while(了解)
do
{
循环体
}
while(boolean表达式);
特点:先执行一次循环体,再判断表达式:
若为true,就执行循环体,再重新判断boolean表达式
若为false,跳过循环体。
do while是先执行后判断,即使判断条件为false,该循环至少会执行一次。
比较while和do while
public class DoWhileDemo1{
public static void main(String[] args) {
System.out.println("begin...");
int a = 5;
int b = 100;
while (a > b) {
System.out.println("5大于100");
}
System.out.println("and...");
do {
System.out.println("5大于100");
} while (a > b);
System.out.println("ending...");
}
}
需求1:打印10行帅哥
public class DoWhileDemo2 {
public static void main(String[] args) {
System.out.println("begin...");
int count = 0;
do {
System.out.println("帅哥");
count++;
} while (count < 5);
System.out.println("ending...");
}
}
需求2:从0打印到100
public class DoWhileDemo3 {
public static void main(String[] args) {
System.out.println("begin...");
int count = 1;
do {
System.out.println(count);
count++;
} while (count < 101);
System.out.println("ending...");
}
}
需求3:计算100以内正整数之和
public class DoWhileDemo4 {
public static void main(String[] args) {
System.out.println("begin...");
int total = 0;//最终之和,初始为0
int count = 1;
do {
total = total + count;
count++;
} while (count < 101);
System.out.println(total);
System.***out***.println("ending...");
}
}
1.3. for(重点)
for(初始化语句; boolean表达式; 循环后操作语句)
{
循环体
}
特点:
初始化语句:只在循环开始时执行一次,一般是定义一个变量,并赋值。
boolean表达式:表达式为false时,循环终止,为true,才执行循环体。
循环后操作语句:循环体执行后会调用该语句,一般是变量的递增或递减操作。
执行顺序:
①、初始化语句->②、boolean表达式:
若为false:跳过循环体
若为true:③、执行循环体
④、循环后操作语句->②、boolean表达式:
需求:计算100以内正整数之和
public class ForDemo {
public static void main(String[] args) {
System.out.println("begin...");
int total = 0;//最终之和,初始为0
for (int count = 1; count < 101; count++) {
total = total + count;
}
System.out.println(total);
System.out.println("ending...");
}
}
死循环:表示循环的boolean表达式一直未true,重复执行循环体。
while循环死循环
while (true) {
//TODO
}
do while循环死循环
do {
//TODO
} while (true);
for循环死循环
for (;;) {
//TODO
}
小结:三种循环,先掌握任意一种就可以了,都可以完成相对的功能,一般循环变量名称: i , j , k , m , n 。
若要获得最好的学习效果,需要配合对应教学视频一起学习。需要完整教学视频,请参看https://ke.qq.com/course/272077。