class matrix { static int count; int rows, columns, id; float *array, temp; public: matrix(); matrix(int r, int c); ~matrix(); void set_value(int x, int y, float v); void set_value_t(int x, float v); float get_value(int x, int y); int get_rows(); int get_columns(); int get_id(); void set_id(); void print(); float get_temp(); void set_temp(float num); };