cfr cif区别 Understanding the Difference in International Shipping

CFRCost and Freight)和CIFCost, Insurance and Freight)是国际贸易中常用的两种贸易术语,用于描述货物的价格及其运输费用。CFR:即“成本加运费”(Cost and Freight),也叫“运费到岸价”,卖方在合同中承担货物的运费,但不负责货物的保险费用。

CFRCost and Freight)和CIFCost, Insurance and Freight)是国际贸易中常用的两种贸易术语,用于描述货物的价格及其运输费用。CFR:即“成本加运费”(Cost and Freight),也叫“运费到岸价”,卖方在合同中承担货物的运费,但不负责货物的保险费用。

CFR (Cost and Freight)和CIF (Cost, Insurance and Freight)是国际贸易中常用的两种贸易术语,用于描述货物的价格及其运输费用。

CFR:即“成本加运费”(Cost and Freight),也叫“运费到岸价”,卖方在合同中承担货物的运费,但不负责货物的保险费用。

CIF:即“成本、保险费加运费”(Cost, Insurance and Freight),也叫“运费保险费到岸价”,卖方在合同中承担货物的运费和保险费用。

代码:

CFR:

int main()

{

double cost = 0.0;

double freight = 0.0;

double total = 0.0;

printf("Please enter the cost of goods:");

scanf("%lf", &cost);

printf("Please enter the freight:");

scanf("%lf", &freight);

total = cost + freight;

printf("The total cost of CFR is: %lf\n", total);

return 0;

}

CIF:

int main()

{

double cost = 0.0;

double freight = 0.0;

double insurance = 0.0;

double total = 0.0;

printf("Please enter the cost of goods:");

scanf("%lf", &cost);

printf("Please enter the freight:");

scanf("%lf", &freight);

printf("Please enter the insurance:");

scanf("%lf", &insurance);

total = cost + freight + insurance;

printf("The total cost of CIF is: %lf\n", total);

return 0;

}

本站系公益性非盈利分享网址,本文来自用户投稿,不代表码文网立场,如若转载,请注明出处

(438)
java简单酒店管理系统代码:实现 Java 简单酒店管理系统的设计与实现
上一篇
go 服务器框架:使用Go框架快速构建Web应用
下一篇

相关推荐

发表评论

登录 后才能评论

评论列表(62条)