摘要: public class Main { public static void main(String[] args) { System.out.println(gcd(4,8)); }//辗转相除法 public static int gcd(int x, int y){ if(y == 0) re 阅读全文
posted @ 2019-08-26 16:28 上官蓓儿 阅读(1839) 评论(0) 推荐(0) 编辑
摘要: java.lang.Math.max(参数1,参数2)是一个静态的工具方法,主要用来比较两个相同类型参数的大小,支持的类型有double,float,int,long四种类型。 阅读全文
posted @ 2019-08-26 15:02 上官蓓儿 阅读(210) 评论(0) 推荐(0) 编辑