static int gcd(int a,int b){
           return b==0?a:gcd(b,a%b);
        }

 

posted on 2020-02-04 16:24  qdu_lkc  阅读(259)  评论(0编辑  收藏  举报