gpt4 book ai didi

java - JAVA中带有多个条件的do while循环

转载 作者:行者123 更新时间:2023-12-02 08:51:47 29 4
gpt4 key购买 nike

程序在 do while 循环中跟踪产品和产品数量,并且只有在用户输入字符串“ZZZZ”和整数 0 时才会结束。例如,输入 ZZZZ 和 5 不会结束循环。但不知怎的,它仍然结束了。

 while (!itemcode.equals("ZZZZ") && (quantity != 0));

我得到的输出是

Please enter the product code and quantity: ZZZZ 5

A105: 0 Price = 0.0
A207: 0 Price = 0.0
D671: 0 Price = 0.0
X111: 0 Price = 0.0
X902: 0 Price = 0.0
Total Price: $0.0

这会结束循环,但不应该结束循环。

最佳答案

我认为你真正想要的是这样的:

while (!(itemcode.equals("ZZZZ") && quantity == 0));

关于java - JAVA中带有多个条件的do while循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60727817/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com