[Bài tập]:Day 3:More if


1.  Write a program that accepts two numbers a and b and checks whether or not a is divisible by b.


2.  Write a program to accept 2 numbers and tell whether the product of the two numbers is equal to or greater than 1000.

3.  Write a program to accept 2 numbers. Calculate the difference between the two values. If the difference is equal to any of the values entered, then display the following message :
Difference is equal to value <number of value entered>
If the difference is not equal to any of the values entered, display the following message:
Difference is not equal to any of the values entered

4.  Montek company gives allowances to its employees depending on their grade as follows :
  Grade                                 Allowance
  A                                        300
  B                                        250
     Others                                100       
Calculate the salary at the end of the month.   (Accept Salary and Grade from the user )

5.  Write a program to evaluate the Grade of a student for the following constraints
If marks >75 – grade A
If 60< marks < 75 – grade B
If 45<marks<60 – grade C
If 35<marks<45 - grade D
If marks < 35 – grade E
Tổng kết:
-Cấu trúc if else có câu lệnh: if ( điều kiện){ câu lệnh} else {câu lệnh}
-if có thể đứng một mình nhưng else không thể đứng một mình
- chúng ta có thể lồng các câu lệnh if else với nhau, ví dụ như chúng ta đã có một vế if, nhưng trong vế else chúng ta lại tiếp lục lồng vào một vế if else khác, điều này là hoàn toàn có thể

Nhận xét