⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 matrixtest5.cpp.html

📁 《Big C++ 》Third Edition电子书和代码全集-Part1
💻 HTML
字号:
<html>

<head>
	<title>matrixtest5.cpp</title>
</head>

<body>
<pre>  <font color="#990000">1  #include &lt;string&gt;
  2  
  3  #include "matrix5.h"
  4  
  5  using namespace std;
  6  
  7  int main()
  8  {
  9     <font color="#009999">Matrix&lt;double&gt;</font> m(3, 3);
 10     m[0][0] = m[1][1] = m[2][2] = 1;
 11     m[0][1] = m[1][2] = 2;
 12     m[0][2] = m[1][0] = m[2][0] = m[2][1] = 0;
 13     cout &lt;&lt; 2.0 * m + m * m &lt;&lt; "\n";
 14  
 15     <font color="#009999">Matrix&lt;string&gt;</font> s(3, 2);
 16     s[0][0] = "First"; s[0][1] = "Last";
 17     s[1][0] = "Mary"; s[1][1] = "Miller";
 18     s[2][0] = "Larry"; s[2][1] = "Lin";
 19     cout &lt;&lt; s;
 20           
 21     return 0;
 22  }</font></pre>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -