1. Declare two variables x and y. Assign values to these variables. Number x should be printed only if it is less than 2000 or greater than 3000, and number y should be printed only if it is between 100 and 500.
2. Write a program to show your computer’s capabilities. The user types in a letter of the alphabet and your program should display the corresponding language or package available. Some sample input ans output is given below :
Input Output
A or a Ada
B or b Basic
C or c COBOL
Using the ‘switch’ statement to choose and display the appropriate message. Use the
default label to display a message if the input does not match any of the above
letters.
3. Accept values in three variables and print the highest value.
* Cú pháp lệnh switch ... case:
switch (Biểu thức điều kiện){
case giá trị 1: Khối lệnh; break;
case giá trị 2: Khối lệnh; break;
.
.
case giá trị n: Khối lệnh; break;
default: Khối lệnh;
}Chú ý:
- Các giá trị 1,2..n là các giá trị trả về của Biểu thức điều kiện, tương ứng với giá trị trả về của biểu thức điều kiện thì các khối lệnh tại các case sẽ được thực hiện, sau khi khối lệnh được thực hiện thì tại mỗi case sẽ có thêm dòng break; để thoát khỏi lệnh switch.
- Ngoài lệnh break thì người ta còn dùng lệnh continue để bỏ qua một vòng lặp hoặc case chứa nó.
- Các khối lệnh phía sau các case không cần phải có cặp ngoặc {}.
No comments:
Post a Comment