0

... 在 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);
    }



}
}

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

4

3 回答 3

3

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

   int length = word.length();
   for (int i = 0; i < length; i++) {
     System.out.println(word);
   } 
于 2012-11-12T20:02:28.470 回答
1

我做 C# 编程,但这是相似的。只是用户是这样的:

string word = "hello";
int times = word.Length;
for(int i = 0; i < times; i++)
{
    System.out.println(word); // Java statment from your code
}

希望能帮助到你 ...

于 2012-11-12T20:03:47.043 回答
0
for(int x = 0; x < word.length; x++){
    System.out.println(word);
}
于 2012-11-12T20:03:33.733 回答