問題已解決
用Python軟件,用代碼解出
溫馨提示:如果以上題目與您遇到的情況不符,可直接提問,隨時問隨時答
速問速答你好,:# 定義變量
sales_tax = 2880000 # 銷項稅額
purchase_tax = 1340000 # 進(jìn)項稅額
vat = sales_tax - purchase_tax # 應(yīng)交增值稅金額
# 輸出結(jié)果
print("銷項稅額:", sales_tax)
print("進(jìn)項稅額:", purchase_tax)
print("應(yīng)交增值稅金額:", vat)
2024 03/13 14:27
閱讀 101