프로그래머스 Lv.4행렬과 연산 #pragma once#include #include class C_MAT{private: int** m_ppNode; int m_nColumn; int m_nRow; std::list m_listRotate; void rotateList(std::list &list);public: C_MAT() = default; void init(int nRow, int nColumn); void rotate(); void print();}; #include "mat.h"//리스트를 만들어 -> 뒤에다 복사하는걸 만듬 -> 하나가 부족할꺼임 ㅇㅇ -> void C_MAT::init(int nRow, int nColumn){ m_nColumn = nColumn; m_nRow = nR..