
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
C# Program to Illustrate Upper Triangular Matrix
For the upper triangular matrix, set all the elements below the main diagonal to zero.
Set the following condition −
if (i <= j) Console.Write(A[i, j] + "\t"); else Console.Write("0\t");
Above condition will set 0 to the matrix elements below the main diagonal.
Example
You can try to run the following code to display an upper triangular matrix.
using System; using System.Linq; class Demo { static void Main() { int m, n, i, j; Console.Write("Enter number of rows and columns of the matrix "); m = Convert.ToInt16(Console.ReadLine()); n = Convert.ToInt16(Console.ReadLine()); int[,] A = new int[10, 10]; Console.Write("
Enter elements: "); for (i = 0; i < m; i++) { for (j = 0; j < n; j++) { A[i, j] = Convert.ToInt16(Console.ReadLine()); } } Console.WriteLine("
Upper Triangular Matrix "); for (i = 0; i < m; i++) { for (j = 0; j < n; j++) { Console.Write(A[i, j] + "\t"); } Console.WriteLine(); } for (i = 0; i < m; i++) { Console.Write("
"); for (j = 0; j < 3; j++) { if (i >= j) Console.Write(A[i, j] + "\t"); else Console.Write("0\t"); } } Console.ReadLine(); } }
Output
Enter number of rows and columns of the matrix Enter elements: Upper Triangular Matrix
Advertisements