COUNT.CPP
资源名称:C++100.rar [点击查看]
上传用户:wszmarenbt
上传日期:2013-04-26
资源大小:2552k
文件大小:0k
源码类别:
Windows编程
开发平台:
Visual C++
- //IMPLEMENTATION OF COUNTER CLASS
- //FILE COUNT.CPP
- #define MAX 65535
- #include "Count.h"
- void COUNTER::operator++()
- {
- if (NUMBER<MAX)
- NUMBER+=10;
- }
- void COUNTER::operator--()
- {
- if (NUMBER>0)
- NUMBER-=10;
- }
- void COUNTER::DISPLAY()
- {
- printf("n THE TEST COUNTER = %d",NUMBER);
- }