虽然循环只循环一次

时间:2015-07-09 22:11:41

标签: java while-loop

为什么下面代码中的Coins while循环只循环一次?

该程序应该允许玩家获取他们想要的硬币数量,然后如果他们想要更多硬币可以返回。出于某种原因,虽然一旦你经过Coins循环并退出一次,无论你是否有任何硬币,它都不再有效。

import java.util.Scanner;
public class Coins
{
    public static void main(String[]args)
    {
        int user;
        int coins=1000;
        int player=0;
        boolean Coins=true;
        boolean whatGame=true;
        while(whatGame)
        {
            System.out.print("Press 1 to get more coins\n");
            Scanner myScan=new Scanner(System.in);
            user=myScan.nextInt();
            if(user==1)
            {
                while(Coins)
                {
                    if((coins>100)||(coins==100))
                    {
                        System.out.print('\u000C');
                        coins=coins-100;
                        player=player+100;
                        System.out.print("Only "+coins+" coins left.\n\n");
                        System.out.print("You now have "+player+" coins.\n\n");
                        System.out.println("Press 1 to get more coins\n\nPress 2 to play another game");
                        user=myScan.nextInt();
                        if(user==1)
                        {
                            System.out.print('\u000C');
                            Coins=true;
                        }
                        else
                        {
                            System.out.print('\u000C');
                            whatGame=true;
                            Coins=false;
                        }
                    }
                    else if((user==1)&&(coins<=0))
                    {
                        System.out.print('\u000C');
                        System.out.print("Sorry no coins left.\n");
                        whatGame=true;
                        Coins=false;
                    }
                }
            }
        }
    }
}

2 个答案:

答案 0 :(得分:1)

好的,我不了解你的游戏......但是你在循环中设置Coins=false,然后它将再也不会运行了。

如果你尝试这样的话:

    if(user==1)
    {
        Coins=true;          //new line here
        while(Coins) {

while循环将在每次需要时启动。

您应该重新考虑重新构建解决方案。

答案 1 :(得分:1)

user=myScan.nextInt(); // from this moment on user may no longer be 1
if(user==1)
{
    System.out.print('\u000C');
    Coins=true;
}
else // thus this branch is executed
{
    System.out.print('\u000C');
    whatGame=true;
    Coins=false; // setting Coins to false, not re-entering loop
}