某公司将可变成本提高60%作为零售价。如果平均减价10%,公司的边际贡献率是多少?()
A.27.5%
B.30.6%
C.37.5%
D.41.7%
参考答案:B
低聚糖在人体中有很重要的作用,下列物质中属于低聚糖的是().
A.糖元
B.果糖
C.棉子糖
D.葡萄糖
有以下程序: #include <stdio.h> #include <string.h> void fun(char *s[], int n) char *t; int i, j; for(i=0; i<n-1; i++) for(j=i+1; j<n; j++) if(strlen(s[i])>strlen(s[j]))t=s[i]; s[i]=s[j]; s[j]=t; main() char *ss[]="bcc", "bbcc", "xy", "aaaacc", "aabcc"; fun(ss, 5); printf("%s, %s\n", ss[0], ss[4]); 程序的运行结果是
A) xy, aaaacc B) aaaacc, xy C) bcc, aabcc D) aabcc, bcc