黑马程序员技术交流社区

标题: 自我总结——多种方法判断两个int数是否相等 [打印本页]

作者: 公输子    时间: 2015-8-31 23:07
标题: 自我总结——多种方法判断两个int数是否相等
1~5方法为boolean类型, 6方法返回值为int自己临时想出来的,可以参考一下
1、
public static boolean bi(int a , int b)
     {

          boolean flag;
           if(a==b){

               System.out.print("true");
}
else{
     System.out.print("false");
}
return flag;
     }
2、
public static boolean bi(int a , int b)
     {

          if(a==b)
{
   return(true);
}else{
     System.out.print("false");
}
          return(a==b);
     }

3、
public static boolean bi(int a , int b)
     {
         int flag a>b?true:false;

     return(flag);
     }

4、
public static boolean bi(int a , int b)
     {

          return(a>b?true:false);
     }
5、
public static boolean bi(int a , int b)
     {
          return(a==b);
     }

6、//利用两数相减,判断值是否为0
     public static int bi(int a , int b)
     {
          return(a-b);
     }








欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2