我正在尝试解决hackerrank问题,在此基础上,我会根据基本成本,小费和税率来计算总用餐费用。即使我用视觉代码返回了正确的答案,当我使用hackerrank提交它时也没有任何输出。 https://www.hackerrank.com/challenges/30-operators/problem
def solve(meal_cost, tip_percent, tax_percent):
tip = tip_percent*meal_cost
tax = tax_percent * meal_cost
total_cost = meal_cost+tip+tax
return round(total_cost)
答案 0 :(得分:2)
通过您发布的链接:
输出格式
打印总餐费...
因此,您必须使用print
函数,而不是return
语句。