运行下列程序段,输出结果是( )。struct country{ int num; char name[20];}x[5]={1, "China", 2, "USA", 3, "France", 4, "England", 5, "Spanish"};struct country *p;p=x+2;printf("%d,%s",p->num,x[0].name);
A. 2,France
B. 3,France
C. 4,England
D. 3, China
查看答案
运行下列程序,输出结果是( )struct contry{int num;char name[20];}x[5]={1,"China",2,"USA",3,"France",4,"Englan",5,"Spanish"};main(){int i;for (i=3;i<5;i++)printf("%d%c",x[i].num,x[i].name[0]);}
A. 3F4E5S
B. 4E5S
C. F4E
D. c2U3F4E
题目:程序通过定义学生结构体变量,存储学生的学号、姓名和3门课的成绩。函数fun的功能是:将形参a所指结构体变量中的数据赋给函数中的结构体变量b,并修改b中 的学号和姓名,最后输出修改后的数据。例如:a所指变量中的学号、姓名和三门课的成绩依次是:10001、"ZhangSan"、95、80、88, 则修改后输出b中的数据应为:10002、"LiSi"、95、80、88。#include #include struct student{long sno;char name[10];float score[3];};void fun(struct student a){struct student b;int i;/***********SPACE***********/b = 【①】;b.sno = 10002;/***********SPACE***********/strcpy(【②】, "LiSi");printf("\nThe data after modified :\n");printf("\nNo: %ld Name: %s\nScores: ",b.sno, b.name);for (i=0; i<3; i++)/***********SPACE***********/printf("%6.2f ", b.【③】);printf("\n");}main(){struct student s={10001,"ZhangSan", 95, 80, 88};int i;printf("\n\nThe original data :\n");printf("\nNo: %ld Name: %s\nScores: ",s.sno, s.name);for (i=0; i<3; i++)printf("%6.2f ", s.score[i]);printf("\n");fun(s);}
Translate the words and expressions learned in this unit into English.1 报关2 保税区3 报关委托书4 报关行5 相关单据6 申报7 检查8 应征税的9 装货10 卸货11 消费税12 税收,收入13 征收14 法律效力15 商品16 金融交易17 不动产18 进口商品19 称之为20 同样地21 托运的货物22 发票价值23 运费24 边境25 保险费26 上涨27 关税税率28 关税表29 特殊优惠30 配额31 低报32 应评税价值33 低估34 逃避35 与......合作36 构成,包含37 走私38 规定限额39 纪念品40 外交官41 有权利做某事42 免税品43 保税仓库44 合同45 发票46 装箱单47 报关单48 报关委托书49 报检委托书50 海运提单51 场站收据52 保函53 合格质量标准54 拒收货物55 非常重视56 检验证书57 遭受巨大损失58 出港证59 清关证书,无犯罪记录证明60 扣留61 收货人62 发货人63 托运单
According to the dialogues we have learned, act out 1 dialogue with your partner (四人中的两人一组)on(1) a negotiation on Customs Clearance;(2)upload the video of your dialogue online.