YTU 2955: A改错题--销售部的打印机
2955: A改错题--销售部的打印机
时间限制: 1 Sec
内存限制: 128 MB
提交: 61
解决: 47
题目描述
销售部新进了一台快速打印机,使用频率很高。为了能够对打印情况进行统计,规定每个人在打印后需要登记时间和用纸张数。
注:本题只需要提交修改和完善部分的代码,请按照C++方式提交。
#include using namespace std; class FastPrinter { public: FastPrinter() {} FastPrinter(int year,int month,int day,int num); ~FastPrinter() {} void PrintJob() {} static unsigned int getcounts() { return counts; } static unsigned int gettotals() { return totals; } private: static unsigned int counts; static unsigned int totals; int year,month,day; };/* 修改和完善该部分代码 unsigned int FastPrinter::counts = 0; FastPrinter::FastPrinter(int year,int month,int day,int num):year(year),month(month),day(day) { totals++; }*/ int main() { FastPrinter *fp; int year,month,day,num; int n,m; cin>>n; while(n--) { cin>>m; while(m--) { cin>>year>>month>>day>>num; fp=new FastPrinter(year,month,day,num); fp->PrintJob(); delete fp; } } cout<<"打印次数:"<输入
第一行n表示下面n个部门 第二行开始分别为每个部门的数据 对于每个部门, 第一行m表示该部门打印的次数 接来下m行给出打印的时间(年月日)和打印张数
输出
总的打印次数和打印张数
样例输入
322015 5 30 982015 6 2 12842015 5 29 1202015 6 1 10002015 6 3 452015 6 7 30012015 6 3 78
样例输出
打印次数:7,张数:1769
你 离 开 了 , 我 的 世 界 里 只 剩 下 雨 。 。 。
#include using namespace std;class FastPrinter{public: FastPrinter() {} FastPrinter(int year,int month,int day,int num); ~FastPrinter() {} void PrintJob() {} static unsigned int getcounts() { return counts; } static unsigned int gettotals() { return totals; }private: static unsigned int counts; static unsigned int totals; int year,month,day;};unsigned int FastPrinter::counts = 0;unsigned int FastPrinter::totals = 0;FastPrinter::FastPrinter(int year,int month,int day,int num):year(year),month(month),day(day){ FastPrinter::counts++; FastPrinter::totals+=num;}int main(){ FastPrinter *fp; int year,month,day,num; int n,m; cin>>n; while(n--) { cin>>m; while(m--) { cin>>year>>month>>day>>num; fp=new FastPrinter(year,month,day,num); fp->PrintJob(); delete fp; } } cout<<"打印次数:"<
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
暂时没有评论,来抢沙发吧~