if和else语句不工作如果语句有效,则else语句不能

时间:2014-02-15 04:50:29

标签: java

我是首发,我只做一些小项目我的一个有问题。这是剧本。

import java.util.Scanner;


public class GetInput


{

public static void main(String[] args){

Scanner sc= new Scanner(System.in);//create a scanner object to collect user input

String vYourName;

vYourName="giacomo";

String vNotYourName;

vNotYourName="";

String vPraise;

System.out.print("Enter your name? >>");


  if(vYourName=="giacomo")

  {

vYourName= sc.next();

vPraise =vYourName + " ,hi there";
}
else
{
vYourName= sc.next();

vPraise =vYourName + " how are you";
}


System.out.println(vPraise);
    }
}

现在的问题是,我只想写giacomo这个词,当它写回来嗨那里和其他什么来回信你是怎么回事。

我做错了什么或者这不可能再做一次抱歉我只是一个初学者。

0 个答案:

没有答案