用两个类制作一个简单的算法。试图弄清楚为什么它不会打印任何东西。可能是显而易见的,但我看不到。该程序需要 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);
}
}