Creat a program to calculate 5% of discount on total purchase of stationary.
Answers
Answered by
1
Answer:
Discount = bill - (bill * discount / 100)
bill = int(input("Enter bill amount:")) discount = int(input("Enter discount percentage:")) output = bill - (bill * discount / 100) print("After discount your bill is: ", output)
Output:
Enter bill amount: 2500 Enter discount percentage: 15 After discount your bill is: 2125.0
pla make me brainleast
Answered by
1
Explanation:
Similar questions
English,
1 day ago
English,
1 day ago
Economy,
3 days ago
Math,
3 days ago
Computer Science,
8 months ago
Computer Science,
8 months ago