这周自学了关于java的循环语句(for循环、while循环、do while循环)和特殊流程控制语句(break:终止某个语句块的循环 和conture:用于跳过某个语句块的一次执行),通过简单的敲写程序更加的深入了解以及应用:
第一种:
public class test {
public static void main(String[] args) {
for(int i=0;i<5;i++) {
System.out.println("hello world!");
}
}
}
第二种:
int i=0;
while(i<5){
System.out.println("hello world!");
i++;
}
第三种:
int k=0
do{
System.out.println("hello world!");
k++;
}while(k<5);
循环结构语句可以相互镶嵌来完成比较困难的程序:
public class test {
public static void main(String[] args) {
for(int i=0;i<5;i++) {
System.out.println("大循环-"+i);//可以看出大循环与小循环的关系;
for(int j=0;j<3;j++){
System.out.println("小循环-"+j);//方便观察第几次循环;
}
}
}
}
break:
public class test {
public static void main(String[] args) {
for(int i=0;i<5;i++) {
i++;
for(int j=0;j<3;j++){
if(i>3){
break;//跳出
System.out.println("循环结束");
}
System.out.println(i);
}
}
}
}
conture:
for(int i=0;i<9;i++){
if(i%2==0){
conture;
}
System.out,println(i);//只输出奇数;
}
通过编写简单的程序可以提升自己的编程能力,以及更好的掌握其使用方法,一定会坚持下去!