由于某种原因不读取最后一个输入,但读取其他输入

发布于 2024-12-17 11:37:03 字数 522 浏览 1 评论 0原文

(使用java)

我对这个问题的旧解释很糟糕,所以我会重新表述它。基本上在代码的末尾,它应该检查用户是否想要重新运行程序。 Y == 重复。 N == 结束程序。那么为什么这段代码不起作用呢?它与其他检查正在执行的操作相同,但看起来它几乎跳过了最后两个 if 语句。怎么了?

      String loopy = in.nextLine();
      in.nextLine();
      if(loopy.equals("Y")){
        for(int count = 0;count<5;count++)
        {
          System.out.println("");
        }
      }
      if(loopy.equals("N"))
      {
        break; 
      }
    }
    System.out.println("You have chosen to exit the program. Program Finished");
}}

(Using java)

My old explanation of the problem is terrible so I'll re word it. Basically at the end of the code it should check if the user wants to rerun the program. Y == Repeat. N == End program. So why is this code not working? It is the same as what the other checks are doing but it almost seems like it skips those last two if statements. What is wrong?

      String loopy = in.nextLine();
      in.nextLine();
      if(loopy.equals("Y")){
        for(int count = 0;count<5;count++)
        {
          System.out.println("");
        }
      }
      if(loopy.equals("N"))
      {
        break; 
      }
    }
    System.out.println("You have chosen to exit the program. Program Finished");
}}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

×眷恋的温暖 2024-12-24 11:37:03

只需交换这两行的顺序,您的代码就会运行良好

String loopy = in.nextLine();
in.nextLine();

in.nextLine();
String loopy = in.nextLine();

Just swap the order of these two lines and your code will run well:

String loopy = in.nextLine();
in.nextLine();

Make it:

in.nextLine();
String loopy = in.nextLine();
爱你是孤单的心事 2024-12-24 11:37:03

看起来您正在阅读最后一个问题的答案两次:

   String loopy = in.nextLine();
   in.nextLine();

It looks like you're reading the answer to the last question twice:

   String loopy = in.nextLine();
   in.nextLine();
水晶透心 2024-12-24 11:37:03

你的 while 循环永远运行,

while(true) 

永远循环,改变 true 来检查最后一个问题的答案是否是肯定的。

your while loop runs forever,

while(true) 

loops forever, change true to check whether the answer to the last question is yes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文