gpt4 book ai didi

java - For 循环仅运行一次

转载 作者:行者123 更新时间:2023-12-01 06:38:01 24 4
gpt4 key购买 nike

我正在尝试一段for循环代码,用户输入他要写的单词数,然后输入单词本身,最后应该检查特定要求(以K开头的单词会增加计数)值以及以 K 开头的最后一个单词也将被注册)。然而,由于某种我不知道的原因,它只是不会循环,无论输入如何,它都会打印出代码上的所有内容。

package Others;
import java.util.*;
public class StartsWithString
{
public static void main(String[]args)
{
Scanner sc = new Scanner(System.in);
int wordNumber = 0;
String words = "";
int wordCount = 0;
String lastWord = "";

System.out.println("How many words are you going to write?: ");
wordNumber = sc.nextInt();

System.out.println("Write the desired words: ");
for(int i = 0; i < wordNumber; i++);
{
words = sc.nextLine();

if(words.startsWith("K"))
{
wordCount++;
lastWord = words;
}
}

System.out.println("From a total of " + numriFjaleve + " words typed,);
System.out.println(wordCount + " started with the letter K.");
System.out.println("The last word typed which began with the letter K was: " + lastWord);
}
}

最佳答案

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

循环定义末尾有一个分号。所以你的循环实际上不是一个循环。它是一个运行一次的独立代码块。删除分号。

关于java - For 循环仅运行一次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32186903/

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