资源简介

用C++编写的拍卖系统,其中包括程序的说明文档,可以运行,用于学习面向对象、C++程序设计、系统开发。

资源截图

代码片段和文件信息

// Elect.cpp: implementation of the Elect class.
//
//////////////////////////////////////////////////////////////////////

#include “Elect.h“
#include “iostream.h“
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

Elect::Elect()
{
num=0;
}

Elect::~Elect()
{

}
int Elect::depute(long m_idchar m_name[]double m_pricedouble m_fixedPriceint m_n)
{
if(num<256)
{
items[num]=new Goods(m_idm_namem_pricem_fixedPricem_n);
num++;
cout<<“已将“< return 1;
}else
{
cout<<“委托失败“< return 0;
}
}
void Elect::announcement()
{
cout<<“拍卖以下产品:“< for(int i=0;i {
cout<<“号码:“<getId()<<“名称:“<getName()<<“原价:“<getPrice()<<“拍卖价:“<getFixedPrice()< }
}
void Elect::addElect(long m_idint m_ndouble m_fixedPrice)
{
for(int i=0;i {
if(items[i]->getId()==m_id)
{
items[i]->setTimes(m_n);
items[i]->setFixedPrice(m_fixedPrice);
}
else
{
cout<<“信息错误!“< }
}
}
void Elect::result(long m_id)
{
for(int i=0;i {
if(items[i]->getId()==m_id)
{
if(items[i]->getTimes()>0)
{
cout<<“拍卖成功!“< cout<<“最终的拍卖价格为“<getFixedPrice()< }
else
cout<<“该物品没有拍卖出去!“< }else
{
cout<<“信息错误!“< }
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1541  2014-10-03 21:06  拍卖系统及其说明文档\election\Elect.cpp

     文件        717  2014-10-03 21:03  拍卖系统及其说明文档\election\Elect.h

     文件       4607  2014-09-26 15:12  拍卖系统及其说明文档\election\election.dsp

     文件        522  2014-09-26 13:59  拍卖系统及其说明文档\election\election.dsw

     文件      41984  2014-09-26 15:12  拍卖系统及其说明文档\election\election.ncb

     文件      48640  2014-09-26 15:12  拍卖系统及其说明文档\election\election.opt

     文件        930  2014-09-26 15:10  拍卖系统及其说明文档\election\election.plg

     文件        929  2014-10-03 08:45  拍卖系统及其说明文档\election\Goods.cpp

     文件        808  2014-10-03 08:45  拍卖系统及其说明文档\election\Goods.h

     文件       1410  2014-10-03 21:07  拍卖系统及其说明文档\election\test.cpp

     文件       3501  2014-10-03 21:08  拍卖系统及其说明文档\election\test.dsp

     文件        516  2014-10-03 21:08  拍卖系统及其说明文档\election\test.dsw

     文件        472  2014-09-26 14:59  拍卖系统及其说明文档\election\test.h

     文件      50176  2014-10-03 21:08  拍卖系统及其说明文档\election\test.ncb

     文件      48640  2014-10-03 21:08  拍卖系统及其说明文档\election\test.opt

     文件        780  2014-10-03 21:07  拍卖系统及其说明文档\election\test.plg

     文件      13473  2014-10-03 21:06  拍卖系统及其说明文档\election\Debug\Elect.obj

     文件     221231  2014-09-26 15:10  拍卖系统及其说明文档\election\Debug\election.exe

     文件     250076  2014-09-26 15:10  拍卖系统及其说明文档\election\Debug\election.ilk

     文件     244628  2014-09-26 15:07  拍卖系统及其说明文档\election\Debug\election.pch

     文件     525312  2014-09-26 15:10  拍卖系统及其说明文档\election\Debug\election.pdb

     文件       7774  2014-10-03 21:06  拍卖系统及其说明文档\election\Debug\Goods.obj

     文件     233533  2014-10-03 21:07  拍卖系统及其说明文档\election\Debug\test.exe

     文件     279608  2014-10-03 21:07  拍卖系统及其说明文档\election\Debug\test.ilk

     文件      11617  2014-10-03 21:07  拍卖系统及其说明文档\election\Debug\test.obj

     文件     250948  2014-10-03 21:06  拍卖系统及其说明文档\election\Debug\test.pch

     文件     566272  2014-10-03 21:07  拍卖系统及其说明文档\election\Debug\test.pdb

     文件      74752  2014-10-03 21:07  拍卖系统及其说明文档\election\Debug\vc60.idb

     文件      61440  2014-10-03 21:07  拍卖系统及其说明文档\election\Debug\vc60.pdb

     文件     109109  2014-11-02 16:44  拍卖系统及其说明文档\拍卖作业的文档.docx

............此处省略8个文件信息

评论

共有 条评论