莱维贝贝697 2022-10-20 22:03 采纳率: 66.7%
浏览 69
已结题

如何用java编写带状矩阵

img


要求就是编写一个带状矩阵,代入数值之后需要运行出相应的带状矩阵

  • 写回答

1条回答 默认 最新

  • 游一游走一走 2022-10-20 22:14
    关注
    import java.util.Scanner;
     
    public class test {
        public static void bandMatrix(int n, int width) {
            for (int i = 0; i < n; i++) {
                for (int j = 0; j < n; j++) {
                    if (Math.abs(i - j) <= width)
                        System.out.print("*");
                    else
                        System.out.print("0");
                    if (j != n - 1)
                        System.out.print("  ");
                }
                System.out.println();
            }
        }
     
        public static void main(String[] args) {
            Scanner sc = new Scanner(System.in);
            System.out.print("plase input n and width:");
            while (sc.hasNextInt()) {
                int n = sc.nextInt();
                int width = sc.nextInt();
                bandMatrix(n, width);
                System.out.print("plase input n and width:");
     
            }
            sc.close();
            // bandMatrix(4, 1);
            // bandMatrix(4, 2);
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 已结题 (查看结题原因) 10月20日
  • 已采纳回答 10月20日
  • 创建了问题 10月20日

悬赏问题

  • ¥30 VMware 云桌面水印如何添加
  • ¥15 用ns3仿真出5G核心网网元
  • ¥15 matlab答疑 关于海上风电的爬坡事件检测
  • ¥88 python部署量化回测异常问题
  • ¥30 酬劳2w元求合作写文章
  • ¥15 在现有系统基础上增加功能
  • ¥15 远程桌面文档内容复制粘贴,格式会变化
  • ¥15 这种微信登录授权 谁可以做啊
  • ¥15 请问我该如何添加自己的数据去运行蚁群算法代码
  • ¥20 用HslCommunication 连接欧姆龙 plc有时会连接失败。报异常为“未知错误”