Bài đăng

bài tập java #7 : Switch

HuanBuiThanh
Estimated read time: 0 min
Bài 8 – switch
Bạn đã học xong if. Bạn muốn dùng vòng lặp if để đánh giá điểm số nhập vào. Bạn sẽ viết chương trình sau đây

PHP Code:
import java.io.*;
public class 
Hello {
                public static 
void main(String[] argsthrows Exception {
                                
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
                                
System.out.print("Nhap diem so: ");
                                
int diem Integer.parseInt(in.readLine());
                                if(
diem<=2System.out.println("Yeu");
                                if((
diem>2) && (diem<=3)) System.out.println("Trung binh");
                                if((
diem>3) && (diem<=4)) System.out.println("Kha");
                                if((
diem>4) && (diem<5)) System.out.println("Gioi");
                                if(
diem==5System.out.println("Xuat sac");
                }
}  


Thay vì lặp lại những câu if ấy, bạn nên dùng switch

PHP Code:
import java.io.*;
public class 
Hello {
                public static 
void main(String[] argsthrows Exception {
                                
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
                                
System.out.print("Nhap diem so: ");
                                
int diem Integer.parseInt(in.readLine());
                                switch(
diem)
                                {
                                                case 
0:
                                                case 
1:
                                                case 
2:System.out.println("Yeu");break;
                                                case 
3:System.out.println("Trung binh");break;
                                                case 
4:
                                                case 
5:System.out.println("Gioi");break;
                                                default:
System.out.println("Vao sai");
                                }
                }
}  


*break với switch: break sẽ thoát ngay ra khỏi khối lệnh trong thân của switch 

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.