matrix5.cpp.html
来自「《Big C++ 》Third Edition电子书和代码全集-Part1」· HTML 代码 · 共 21 行
HTML
21 行
<html>
<head>
<title>matrix5.cpp</title>
</head>
<body>
<pre><font color="#990000"> 1 #include <iomanip>
2 #include <sstream>
3
4 #include "matrix5.h"
5
6 string MatrixIndexException::format_message(int n)
7 {
8 ostringstream outstr;
9 outstr << "Matrix index " << n << " out of range";
10 return outstr.str();
11 }</font></pre>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?