kotlin 打印堆栈_Kotlin程序打印上三角矩阵

kotlin 打印堆栈

An upper triangular matrix is a matrix in which all the lower triangular elements are zero, or all the elements below the principle diagonal will be zero.

上三角矩阵是一个矩阵,其中所有下三角元素均为零,或者所有在主对角线以下的元素均为零。

Given a matrix, we have to print its upper triangular.

给定一个矩阵,我们必须打印其上三角形。

Example:

例:

    Input:
    matrix:
    [2, 3, 4]
    [5, 6, 7]
    [8, 9, 8]

    Output:
    Upper Triangular of Matrix :
    [2, 3, 4]
    [0, 6, 7]
    [0, 0, 8]

在Kotlin中打印上三角矩阵的程序 (Program to print upper triangular matrix in Kotlin)

package com.includehelp

import java.util.*

// Main function, Entry Point of Program
fun main(args: Array<String>) {

    //variable of rows and col
    val rows: Int
    val column: Int

    //Input Stream
    val scanner = Scanner(System.`in`)

    //Input no of rows and column
    print("Enter the number of rows and columns of matrix : ")
    rows   = scanner.nextInt()
    column = scanner.nextInt()

    if(rows!=column) {
        println("Matrix should be Square matrix , Rows and Col size must be Same !!")
        return
    }

    //Create Array
    val matrixA     = Array(rows) { IntArray(column) }

    //Input Matrix
    println("Enter the Elements of First Matrix ($rows X $column} ): ")
    for(i in matrixA.indices){
        for(j in matrixA[i].indices){
            print("matrixA[$i][$j]: ")
            matrixA[i][j]=scanner.nextInt()
        }
    }

    //print Matrix A
    println("Matrix A : ")
    for(i in matrixA.indices){
        println("${matrixA[i].contentToString()} ")
    }

    //get Upper Triangular of matrix
    for(i in matrixA.indices){
        for(j in matrixA[i].indices){
            if(j<i) matrixA[i][j]=0
        }
    }

    //print Matrix A
    println("Upper Triangular of Matrix : ")
    for(i in matrixA.indices){
        println("${matrixA[i].contentToString()} ")
    }
}

Output

输出量

Run 1:
Enter the number of rows and columns of matrix : 4
3
Matrix should be Square matrix , Rows and Col size must be Same
---
Run 2:
Enter the number of rows and columns of matrix : 3
3
Enter the Elements of First Matrix (3 X 3} ):
matrixA[0][0]: 2
matrixA[0][1]: 3
matrixA[0][2]: 4
matrixA[1][0]: 5
matrixA[1][1]: 6
matrixA[1][2]: 7
matrixA[2][0]: 8
matrixA[2][1]: 9
matrixA[2][2]: 8
Matrix A :
[2, 3, 4]
[5, 6, 7]
[8, 9, 8]
Upper Triangular of Matrix :
[2, 3, 4]
[0, 6, 7]
[0, 0, 8]


翻译自: https://www.includehelp.com/kotlin/print-upper-triangular-matrix.aspx

kotlin 打印堆栈

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值