数学运算问题
price = int(input('出厂价'))freight = int(input('内陆运费'))
fee = int(input('出口手续费'))
exchange_rate = int(input('汇率'))
goods = int(input('件数'))
ocean_freight = int(input('海洋运费'))
FOB = (price + freight/goods + fee/goods) / exchange_rate
CFR = FOB + ocean_freight/goods
为什么最后的FOB和CFR没有显示运算? 你得打印才能显示。 qiuyouzhi 发表于 2020-5-9 20:36
你得打印才能显示。
忘了 不好意思{:10_266:}
页:
[1]