如何将两个扫描仪字符串一起添加?在'如果'声明

时间:2016-08-18 11:31:37

标签: java if-statement

我是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的新手,只是学习术语。

由于

1 个答案:

答案 0 :(得分:0)

if(age.equals("something") && sex.equals("your_var")){
        System.out.println("your response")
    }