Java - 使用扫描仪输入重复模式

时间:2015-06-08 03:17:37

标签: java

我正在编写一个类分配程序,其中必须使用for循环制作盒形图案。然后基于扫描仪输入将图案水平重复一定次数。例如,扫描仪输入为3,因此图案水平重复三次。

我已经创建了模式并设置了扫描仪。如何让扫描仪输入重复模式?

不要求代码只是朝着正确的方向推进......

1 个答案:

答案 0 :(得分:0)

for (int i=0; i<Integer.valueOf(scannerInput); i++) { // where scannerInput is the String input that is obtained from user
    printPattern(); // System.out.println() call
}