gueststock.cpp
来自「课程设计做的个人股票管理系统」· C++ 代码 · 共 22 行
CPP
22 行
#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 + =
减小字号Ctrl + -
显示快捷键?