gpt4 book ai didi

java - 如何满足字符串条件?

转载 作者:行者123 更新时间:2023-12-01 12:14:39 27 4
gpt4 key购买 nike

String Enterproducts=in.next();

for(int i=0;i<?;i++)

我想继续输入产品直到完成。这里应该有什么?我们可以使用.compareto() 方法?如果是的话怎么办?

最佳答案

您应该使用 while 循环,例如:

while (in.hasNext()) {
Enterproducts=in.next();
if (Enterproducts.equals ("end")) {
break;
}
//apply your business logic here what you want to do with entered string.
}

关于java - 如何满足字符串条件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27087740/

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