프로그래머스 Lv.4행렬과 연산 (마무리)#pragma once#include #include class C_MAT{private: int** m_ppNode; int m_nColumn; int m_nRow; std::list m_listRotate; std::list* m_listShift; void rotateList(std::list &list);public: C_MAT() = default; void init(int nRow, int nColumn); void rotate(); void print(); void shift();}; #include "mat.h"void C_MAT::init(int nRow, int nColumn){ m_nColumn = nColumn; m_nRow = nRow;..