你和你的约会对象在餐厅正在约会。
键盘录入两个整数,表示你和你对象衣服的时髦度
如果你的时髦度大于你对象的时髦度,约会成功,输出ture
否则输出false
方法一:
/*你和你的约会对象在餐厅正在约会。
键盘录入两个整数,表示你和你对象衣服的时髦度
如果你的时髦度大于你对象的时髦度,约会成功,输出ture
否则输出false*/
public class Test1{
public static void main(String[] args){
//键盘录入一个数用于记录“我”的衣服时髦度
Scanner sc=new Scanner(System.in);
System.out.println("请输入你衣服的时髦度:");
//键盘录入一个数用于记录“我对象”的衣服时髦度
int number=sc.nextInt();
System.out.println("请输入你对象衣服的时髦度:");
int number2=sc.nextInt();
//定义布尔型变量,把结果的真假值返回给result
boolean result=number>number2;
//打印输出结果
System.out.println(result);
}
}
方法二:
public class Test2{
public static void main(String[] args){
Scanner sc =new Scanner(System.in);
System.out.println("请输入我衣服的时髦度:");
int number=sc.nextInt();
System.out.println("请输入我对象衣服的时髦度:");
int number2=sc.nextInt();
//用if语句判断两者间的大小,
//若number>number2则执行下面的输出语句
if(number>number2){
System.out.println(true);
//否则执行else语句
}else{
System.out.println(false);
}
}
}