判断两个数是否相等
public static boolean compare(int a,int b){ if(a==b) return true; else//可以省略不写因为上面return返回了的话就结束了 return false; //优化: //return (a==b)?true:false; //return a==b;//如果返回的是真假值可以用这种。 }
定义功能 对两个数进行比较,获取较大的数
public static int getMax(int w,int e){ if(w>e) return w; else return e; //简化:三元运算符 //return (w>e)?w:e; }
时间: 2024-12-29 11:59:01