InterviewSolution
Saved Bookmarks
| 1. |
Kindly solve itㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤ |
|
Answer» Explanation: Its simple friend if(cost <=2000) PRINT("amount to be PAID: ",cost-(5*cost/100)) ELIF(cost >=2001 && cost<=5000) print("amount to be paid: ",cost-(25*cost/100)) elif(cost >=5001 && cost<=10000) print("amount to be paid: ",cost-(35*cost/100)) else print("amount to be paid: ",cost-(50*cost/100)) |
|