0
Can someone help me whit the problem "tip calculator" I resolve case one but the second ??I don't know
TIP CALCULATOR
6 ответов
+ 3
Please show your attempt.
+ 3
First you need to use the variable bill and then second a division with only one /.
0
Visit my saved works and ull find one on the same
0
bill = int(input())
tip = (bill) * 20 / 100
print (tip)
- 1
bill = int(input())
#tu código va aquí
x = 125.0
x *=20.0
x //=100.0
print (x)
- 1
OK, thank you !