我是Java的新手,我试图从扫描仪对象中添加两个数据串。
我想说
if(age.equals("child")) AND sex.equals("male")) THEN System.out.println etc;
以下代码是我到目前为止所有的代码。我也有一个代码:sex.equals(" male")
if(age.equals("child")){
System.out.println("1. Male child shirts are on the 5th floor");
System.out.println("2. Male child trousers are on the 6th floor");
System.out.println("3. Male child shoes are on the 6th floor");
}
我希望这不会让人感到困惑。我是学习Java的新手,只是学习术语。
由于
答案 0 :(得分:0)
if(age.equals("something") && sex.equals("your_var")){
System.out.println("your response")
}