product.cpp.html

来自「《Big C++ 》Third Edition电子书和代码全集-Part1」· HTML 代码 · 共 17 行

HTML
17
字号
<html>

<head>
	<title>product.cpp</title>
</head>

<body>
<pre>  1  #include "product.h"
  2  
  3  Product::Product(string d, double p)
  4  {
  5     description = d;
  6     price = p;
  7  }</pre>
</body>
</html>

⌨️ 快捷键说明

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