在学习基础视频的时候遇到这么一道函数题:需求为:判断两个数是否相同。函数部分已经写好,主函数部分一直不知道该怎么调用,我自己也写了几个语句,运行出的结果总有问题,哪个热心的同学帮忙解答或顺便点评下,非常感谢!:loveliness:我自己写的代码如下:
class Function2
{
public static void main(String[] args)
{
boolean m=compare(8,6); //这个部分一直不知道该怎么表达,不明白函数返回的结果如果是布尔型的话怎么调用呢?
if(m=true)
System.out.println("这两个数相等");
else
System.out.println("这两个数不相等");
}
public static boolean compare(int x,int y)
{
return x==y;
}
}
|