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

📄 gueststock.cpp

📁 课程设计做的个人股票管理系统
💻 CPP
字号:
#include <iostream.h>
#include <fstream.h>
#include <iomanip.h>
#include <string.h>
#include <conio.h>
#include <stdlib.h>
#include <time.h>
#include "Stock.h"
#include "GuestStock.h"
#include "Guest.h"



GuestStock::GuestStock(long stkCode1, char stkName1[], long stkIss1, double stkOriPrice1, 
					   double stkPrice1, long buyNum1, double buyPrice1)
					   :Stock(stkCode1, stkName1, stkIss1, stkOriPrice1, stkPrice1)
{
	buyNum = buyNum1;
	buyPrice = buyPrice1;
}

⌨️ 快捷键说明

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