#1.设计一个求n个工作日的营业额的函数,如果n个工作日的营业额超过10000,奖励500,否则扣100
时间: 2024-11-06 17:35:42 浏览: 8
当然,我们可以创建一个函数,接收一个参数`n`表示个工作日的数量,然后计算这些天的总营业额并根据条件决定是否给予奖励或扣款。这是一个简单的Python函数实现:
```python
def calculate_earnings_and_reward(n, daily_earnings):
total_earnings = n * daily_earnings
if total_earnings > 10000:
reward = 500
else:
reward = -100
return total_earnings, reward
# 示例用法
daily_profit = 1000 # 每个工作日的平均营业额
num_days = 15 # 工作日数量
total, reward = calculate_earnings_and_reward(num_days, daily_profit)
print(f"{num_days}个工作日的总营业额为: {total}, 奖励/扣款金额为: {reward}")
```
在这个函数中,我们首先计算`n`个工作日内总收入(`total_earnings`),然后根据这个值判断是否符合奖励条件。如果超过10000元,则`reward`为500元;否则,`reward`为-100元。
阅读全文