Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,038 questions

40,790 answers

573 users

How to display the upper triangular matrix in VB.NET

1 Answer

0 votes
Imports System

Public Class Program
	Public Shared Sub printUpperTriangular(ByVal matrix As Integer(,))
        Dim rows As Integer = matrix.GetLength(0)
        Dim cols As Integer = matrix.GetLength(1)

        For i As Integer = 0 To rows - 1
            For j As Integer = 0 To cols - 1

                If i > j Then
                    Console.Write("0" & " ")
                Else
                    Console.Write(matrix(i, j) & " ")
                End If
            Next

            Console.WriteLine()
        Next
    End Sub

    Public Shared Sub Main()
        Dim matrix As Integer(,) = {
									{1, 2, 3},
									{4, 5, 6},
									{7, 8, 9}}
        printUpperTriangular(matrix)
    End Sub
End Class




' run:
'
' 1 2 3 
' 0 5 6 
' 0 0 9
'

 





answered Aug 28, 2021 by avibootz

Related questions

1 answer 50 views
1 answer 46 views
1 answer 50 views
1 answer 70 views
...