int cm(int a,int b){ if (!b) return a;else return(cm(b,a %b));}
我们看一下小例子: int value = 0; // 执行了1次 for (int i = 0; i < n; ...