Write a program to implement Lower Triangular Matrix using one-dimensional array

by

Last updated on Nov 19, 2022
DS Practicals (Question 19)

Input

#include<iostream>
 
using namespace std;
 
void lower(int matrix[3][3], int row, int col)
{
    int i, j;
    for (i = 0; i < row; i++)
    {
        for (j = 0; j < col; j++)
        {
            if (i < j)
            {
                cout << "0" << " ";
            }
            else
            cout << matrix[i][j] << " ";
        }
        cout << endl;
    }
}
 
// Driver Code
int main()
{
    cout << "\n\t ~~~~~~~~~~~~~~~~~~~~~~~Practical 19~~~~~~~~~~~~~~~~~~~~\n\t\t\t\t  \n";
    int matrix[3][3] = {{1, 2, 3},
                        {4, 5, 6},
                        {7, 8, 9}};
    int row = 3, col = 3;
     
    cout << "Lower triangular matrix: \n";
    lower(matrix, row, col);
     
//    cout << "Upper triangular matrix: \n";
//    upper(matrix, row, col);
         
    return 0;
}

How useful was this post?

5 star mean very useful & 1 star means not useful at all.

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this post.

Tags: