Sunday, September 14, 2014

Day 3 - 4: 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

No comments:

Post a Comment