int flcm(int a,int b){ int i; for(i=(a>b?a:b);i { if(i%a==0&&i%b==0) break; } return i;}int flcm(int a,int b){ return a*b/fgcd(a,b);}这两个函数名一样了。