为什么这里不能用==比较
Scanner A=new Scanner(System.in);
String B=A.next();
if(B=="yes")
改成
Scanner A=new Scanner(System.in);
Int B=A.nextInt();
if(B==1)
又可以啦,为什么???
Scanner A=new Scanner(System.in);
String B=A.next();
if(B=="yes")
改成
Scanner A=new Scanner(System.in);
Int B=A.nextInt();
if(B==1)
又可以啦,为什么???
2015-04-22
举报