摘要: import java.util.scanner; public class Test { public static int fun(int a ,int b){ int c; c = a % b; while(c > 0){ a = b; b = c; c = a % b; } return(b 阅读全文
posted @ 2018-04-10 21:58 孔得秀 阅读(139) 评论(1) 推荐(0) 编辑