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

📄 np.cpp

📁 酒吧管理系统!!有简单基本功能
💻 CPP
字号:
//Np.cpp
#include<iostream.h>
#include"Counter.h"
#include"Np.h"

Np::Np(int t,double d):Counter(t)
{
 getdailydiscount(d);
}

void Np::getdailydiscount(double d)
{
 dailydiscount=d;
}

void Np::print()const
{
 Counter::print();
 cout<<"Today's discount:"<<dailydiscount;
}

⌨️ 快捷键说明

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