微软笔试题GCD [解决办法]
//非递归辗转相除int gcd(int a,int b){ int r=0; r=a%b; while(r) { a=b; b=r; r=a%b; } return b;}