0

用两个类制作一个简单的算法。试图弄清楚为什么它不会打印任何东西。可能是显而易见的,但我看不到。该程序需要 2 个输入,一个 String 和一个 Int。它以 int 等于的次数重复字符串。

主要的:

public class Main { 
 public static void main (String[]args) {
  Scanner input = new Scanner(System.in);

  System.out.print("Enter the string you want to repeat: ");
  String str = input.nextLine();
  input.nextLine();//Clear scanner memory

  System.out.print("Enter the amount of times you want it to repeat: ");
  int repeat = input.nextInt();

  references.repeat(str, repeat);
 }
}

二等:

public void repeat(String str, int n) {
 for (int repeatNum = n; repeatNum > 0; repeatNum--) {
  System.out.println(str);
 }          
}
4

1 回答 1

1

由于之前的答案已被删除:

public class Test {
    public static void main(String[] args) {
        Scanner input = new Scanner(System.in);

        System.out.print("Enter the string you want to repeat: ");
        String str = input.nextLine();


        System.out.print("Enter the amount of times you want it to repeat: ");
        int repeat = input.nextInt();

        System.out.println(str);
        System.out.println(repeat);
    }
}

输出:

Enter the string you want to repeat: dererer
Enter the amount of times you want it to repeat: 5

dererer
5

如果您没有此输出,那是因为您的帖子中没有详细说明本地化问题。

如果您确实这样做了,但仍然没有得到预期的输出:编辑您的帖子并详细说明您采取的确切步骤。

于 2013-10-31T01:08:41.583 回答