我正在做一個rock-paper-scissors程序,並且在我的代碼中,如果向下滾動到方法determineWinner()
,我已經設置了它,但在方法main()
中,當我調用它的時候,它不會打印你是贏了,還是輸了,還是輸了。當我執行它時,我的程序沒有打印任何東西
這裏是我的主要方法:
public class RockPaperScissorsMain {
public static void main(String[] args) {
RockPaperScissorsClass rc = new RockPaperScissorsClass();
System.out.println("Player is: " + rc.getPlayer());
System.out.println("Computer is: " + rc.getComputer());
System.out.println(rc.determineWinner());
}
}
這裏是我的課。
public class RockPaperScissorsClass {
private int wins;
private int losses;
private int ties;
private int CChoice;
private int PChoice;
public RockPaperScissorsClass(int wins, int losses, int ties, int computerPick, int playerPick) {
this.wins=wins;
this.losses=losses;
this.ties=ties;
this.CChoice=CChoice;
this.PChoice=PChoice;
}
public String getPlayer() {
Scanner in = new Scanner(System.in);
System.out.println("Enter Choice(1=Rock, 2=Paper, 3=Scissors)-->");
int PPChoice = in.nextInt();
String PChoice = null;
if(PPChoice==1) {
PChoice="Rock";
}
else if(PPChoice==2) {
PChoice="Paper";
}
else if(PPChoice==3) {
PChoice="Scissors";
}
else {
while(true) {
System.out.println("You have entered an invalid choice. Please try again.");
System.out.println("Enter Choice(1=Rock, 2=Paper, 3=Scissors)-->");
PPChoice = in.nextInt();
if(PPChoice==1) {
PChoice="Rock";
break;
}
else if(PPChoice==2) {
PChoice="Paper";
break;
}
else if(PPChoice==3) {
PChoice="Scissors";
break;
}
}
return PChoice;
}
public String getComputer() {
Random rand = new Random();
int CCChoice = rand.nextInt(3)+1;
String CChoice = null;
if(CCChoice==1) {
CChoice="Rock";
}
else if(CCChoice==2) {
CChoice="Paper";
}
else if(CCChoice==3) {
CChoice="Scissors";
}
return CChoice;
}
public String determineWinner() {
String detWinner = "";
if(PChoice==1 && CChoice==2) {
detWinner = "You Lose";
}
else if(PChoice==1 && CChoice==3) {
detWinner = "You Win";
}
else if(PChoice==2 && CChoice==3) {
detWinner = "You Lose";
}
else if(PChoice==2 && CChoice==1) {
detWinner = "You Win";
}
else if(PChoice==3 && CChoice==1) {
detWinner = "You Lose";
}
else if(PChoice==3 && CChoice==2) {
detWinner = "You Win";
}
else if(PChoice==1 && CChoice==1){
detWinner = "You Have Tied";
}
else if(PChoice==2 && CChoice==2) {
detWinner = "You Have Tied";
}
else if(PChoice==3 && CChoice==3){
detWinner = "You Have Tied";
}
return detWinner;
}
public RockPaperScissorsClass() {this(0,0,0,0,0);}
public void setPlayer(int p) {CChoice = p;}
}
intermWinner()做PChoice和CChoice是指this.PCChoice和this.CChoice還是本地變量? –
[可變範圍](http://www.java2s.com/Tutorial/Java/0020__Language/VariableScope.htm)。 CPU不壞。您正在引用其範圍之外的變量。 – MikeJRamsey56
我編輯了你的問題 - 我刪除了不必要的行。 – xenteros