gpt4 book ai didi

java - 我需要打印一个等于该单词中字符数的单词

转载 作者:行者123 更新时间:2023-12-01 18:57:49 26 4
gpt4 key购买 nike

...在 Java 中使用 for 循环。例如,hello 将被打印五次。

这是迄今为止我的代码:

import java.util.Scanner;

class Words {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("Please enter one word of your choice");
String word = scan.nextLine();
System.out.println(word);
int length = word.length();
System.out.println(length);

for (length < word; length++) {
System.out.println(word);
}



}
}

我们必须使用扫描仪包。抱歉,如果这真的很基本,但我才刚刚开始,无法在任何地方找到答案!

最佳答案

你只需要编写一个循环,运行 0 到单词的长度,例如如下:

   int length = word.length();
for (int i = 0; i < length; i++) {
System.out.println(word);
}

关于java - 我需要打印一个等于该单词中字符数的单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13350645/

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