← 返回题库
中级

投资性房地产处置-成本模式

未完成
中级参考 代码结构已给出,请填写 ____ 处
def solve(____):
    book_value = cost - accumulated_depreciation
    tax = selling_price * tax_rate
    gain_loss = selling_price - book_value - tax
    return {"____": book_value, "____": tax, "____": gain_loss}

示例

输入
solve(5000000, 1000000, 4500000, 0.05)
期望输出
{'账面价值': 4000000, '出售税费': 225000.0, '处置损益': 275000.0}
Python 代码 🔒 登录后使用
🔒

登录后即可练习

注册免费账号,在浏览器中直接运行 Python 代码