Bài đăng

Bài tập java #8 : FOR

HuanBuiThanh
Estimated read time: 1 min
Bài 10 – vòng lặp for
PHP Code:
for(int i=0;i<n;i++)
                
s+=i;  


3 thành phần trong câu for ta có thể bỏ hết nhưng phải giữ lại các dấu ; khi đó nến muốn ta có thể đặt phép toán điều khiển vòng lặp trong thân lệnh như sau
PHP Code:
for(int i=0;i<n;)
{
                
s+=i;
                
i++;
}  


*break với for: break sẽ thoát ngay ra khỏi vòng for

PHP Code:
for(int i=0;i<n;i++)
{
                
System.out.println(i);break;
                
System.out.println("Tiep tuc");
}  


Kết quả in ra không có câu "Tiep tuc" vì break nhảy ngay ra khỏi vòng for sau khi in 1
*continue với for: continue sẽ khiến vòng for bắt đâu 1 chu trình mới và bỏ qua tất cả các lệnh bên dưới nó
VD: in tất cả các số từ 0 đến 10, bỏ qua 3,4,5
PHP Code:
for(int i=0;i<10;i++)
{
                if((
i= =3)||(i= =4)||(i= =5)) continue;
                
System.out.println(i);
}  

Getting Info...

Đăng nhận xét

Cảm ơn bạn đã quan tâm và gửi nhận xét tại
http://huanbuithanh.blogspot.com
hãy ghé thăm blog hàng ngày để được cập nhật những thủ thuật mới nhất nhé . thân ái !
Cookie Consent
We serve cookies on this site to analyze traffic, remember your preferences, and optimize your experience.
Oops!
It seems there is something wrong with your internet connection. Please connect to the internet and start browsing again.
AdBlock Detected!
We have detected that you are using adblocking plugin in your browser.
The revenue we earn by the advertisements is used to manage this website, we request you to whitelist our website in your adblocking plugin.
Site is Blocked
Sorry! This site is not available in your country.