/**
需求:判断两个数是否相同
思路:1.功能是比较两个数,返回类型是boolean
2.有未知内容参与运算,有两个且是int型
*/
class Hanshu
{
public static void main(String[] args)
{
boolean eq=compare(3,4);
System.out.println(eq);
public static boolean compare(int a,int b)
{
if(a==b)
{
return true;
}else{
return false;
}
}
}
}
这段代码为什么总是出现错误,并且是哪里错了呢,为什么也不会出现结果呢?求指教! |
|