根据数据或不良原因﹑状况﹑位置或客户种类等依大小排序及累积值称为()
A.柏拉图
B.特性要因图
C.散佈图
D.条形图
参考答案:A
写出缩略式。
1. name is ________ 2. who is ________ 3. do not ________
4. I am ________ 5. is not ________ 6. you are ________
以下程序中函数fun的功能是:统计person所指结构体数组中所有性别(sex)为M的记录的个数,存入变量n中,并作为函数值返回。请填空: #include<stdio.h> #define N 3 typedef struct int mum,char name[10];char sex;SS; int fun(SS person[]) int i,n=0; for(i=0;i<N;i++) if(______==’M’)n++; return n; main() SS W[N]=1,’AA’,’F’,2,’BB’,’M’,3,’CC’,’M’;int n; n=fun(W);printf("n=%d\n",n);