托运人托运易腐货物时,货物的包装须符合()的规定。
A.货物包装标准表
B.行业标准包装表
C.国家包装标准表
D.易腐货物包装表
参考答案:D
—My listening is very poor. Can you give me some________?
— Of course.
A.advice
B.messages
C.information
D.suggestion
下面的程序可对指定字符串中的字符串进行从大到小排序,请将程序完整。 (注:程序采用了冒泡排序算法) #include<stdio.h> #include<string.h> main() { char*str="ABCDabcd",temp; int n,i; n=strlen(str); while(n->1) for(i=0;i<n;i++) if(str[i]<str[i+1]) { temp= 【17】 ;str[i]=str[i+1]; 【18】 =temp; } printf( 【19】 ); }