Dạng 1: while(…)
while(điều_kiện_lặp){
khối_lệnh;
}
Xét điều kiện trước, đúng rồi mới thực hiện khối lệnh. Vd:
PHP:
public class AndroidVn {
public static void main(String[] args) {
int i;
i = 0;
while (i < 10) {
System.out.print(" "+i++);
}
System.out.println("...i = "+i);
i = 15;
while (i < 10) {
System.out.print(" "+i++);
}
System.out.println("...i = "+i);
}
}
Dạng 2: do{…}while;
do{
khối_lệnh;
}while(điều_kiện);
Thực hiện khối lệnh trước, rồi xét điều kiện, nếu sai thì không thực hiện nữa. Như vậy, ngay cả điều kiện sai từ lần đầu, từ khối lệnh luôn được thực hiện ít nhất 1 lần. Vd:
PHP:
public class AndroidVn {
public static void main(String[] args) {
int i = 0;
do {
System.out.print(" " + i++);
} while (i < 10);
System.out.println("...i = " + i);
i = 15;
do {
System.out.print(" " + i++);
} while (i < 10);
System.out.println("...i = " + i);
}
}
Dạng 3: for(…)
for(khởi_tạo_biến_đếm;đk_lặp;tăng_biến){
<khối_lệnh>;
}
Vd:
PHP:
public class AndroidVn {
public static void main(String[] args) {
int i;
for (i = 0; i < 10; i++) {
System.out.print(" " + i);
}
System.out.println("\n..i = " + i);
}
}
Để hiểu hơn các cấu trúc, các bạn tham khảo thêm
Video của Blog StudyAndShare
Bài tập về nhà:
Bài 2: In ra toàn bộ bảng cửu chương giống hình bài 2 trong hình phía dưới:
Bai 2
ReplyDeletepackage project1;
/**
*
* @author Administrator
*/
public class BangCuuchuong {
public static void main (String[]args){
int a;
System.out.print("Banh cuu Chuong");
for(int i=1;i<10;i++){
System.out.print("Bang nhan" +i+"\n");
for(a=1;a<10;a++){
int result = a*i;
System.out.print(i+"x"+a+ "="+result );
System.out.print("\n");
}
}
}}