Explanation: 20% of 50 is 10. To calculate 20% of a given amount, you can multiply the number by 20 and divide it by 100: 50*2 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

Explanation: 20% of 50 is 10. To calculate 20% of a given amount, you can multiply the number by 20 and divide it by 100: 50*2

Please can someone show me the way out

13th Jul 2022, 10:55 AM
Adeleke Abdul Rahmon
3 Answers
0
When you go out to eat, you always tip 20% of the bill amount. But who’s got the time to calculate the right tip amount every time? Not you that’s for sure! You’re making a program to calculate tips and save some time. Your program needs to take the bill amount as input and output the tip as a float. Sample Input 50 Sample Output 10.0
13th Jul 2022, 11:01 AM
Adeleke Abdul Rahmon
0
bill = int(input()) #your code goes here input =50 print("bill"*20/100)
13th Jul 2022, 11:05 AM
Adeleke Abdul Rahmon
0
This is what I did bill = int(input()) #your code goes here input =50 print("bill"*20/100)
13th Jul 2022, 11:07 AM
Adeleke Abdul Rahmon