集册 Java实例教程 将for循环与另一个for循环嵌套

将for循环与另一个for循环嵌套

欢马劈雪     最近更新时间:2020-01-02 10:19:05

805
提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
将for循环与另一个for循环嵌套

public class NestedLoop
/**
 from
* N o  w  J a v a . c o m - 时  代  Java 
**/

{

  public static void main(String[] args)

  {

    for(int x = 1; x < 10; x++)

    {

      for (int y = 1; y < 10; y++)

        System.out.print(x + "-" + y + "  ");

      System.out.println();

    }

  }

}