哪一个方法可以作为持续质量改进的基础()
A.PDCA戴明环
B.标杆对照
C.成本效益分析
D.质量成本
参考答案:A
#include<stdio.h> int f(int n) {static int s=1; while(n)s*=n--; return s; } main() {int i,j; i=f(3);j=f(5); printf("The output is:\n"); printf("i=%d j=%d\n",i,j); }