A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

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);
     }



0 个回复

您需要登录后才可以回帖 登录 | 加入黑马