Algs4-1.1.11编写一段代码,打印出一个二维布尔数组的内容

1.1.11编写一段代码,打印出一个二维布尔数组的内容。其中,使用*表示真,空格表示假。打印出行号和列号。
答:
public  class Test
{
    public static void main(String[] args)
    {
      //初始化数组,行列和为偶数时true,奇数时为false。
      int rowLen=6;
      int colLen=7;
      boolean[][] array=new boolean[rowLen][colLen];
      for (int row=0;row<rowLen;row++)
           for (int col=0;col<colLen;col++)
              array[row][col]=(row+col)%2==0;
      //打印列号
      StdOut.printf(" ");
      for (int col=0;col<colLen;col++)
          StdOut.printf("%d",col);
      StdOut.printf("\n");
      //打印行号与数组元素值
      for (int row=0;row<rowLen;row++)
      {
          StdOut.printf("%d",row);
           for (int col=0;col<colLen;col++)
           {
              if (array[row][col])
                 StdOut.printf("*");
              else
                  StdOut.printf(" ");
           }
          StdOut.printf("\n");
      }
     }//end main
}//end class
图片

转载于:https://www.cnblogs.com/longjin2018/p/9848495.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值