方法判断两个数字是否相同
作者:互联网
package com.cnblogs.www;
/*
题目要求:
定义一个方法,用来判断两个数字是否相同。
*/
public class Demo05 {
public static void main(String[] args) {
System.out.println(isSame(10,20));// false
System.out.println(isSame(20,20));// true
}
/*
三要素:
返回值类型:boolean
方法名称:isSame
参数列表:int a,int b
*/
public static boolean isSame(int a, int b) {
/* boolean same;
if (a == b) {
same = true;
} else {
same = false;
}*/
// boolean same = a == b ? true : false;
// boolean same = a == b;
return a == b;
}
}
标签:判断,isSame,数字,相同,int,same,boolean,false,public 来源: https://www.cnblogs.com/hgy8/p/15040701.html