cat.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //cat.cpp
  2. #include "cat.h"
  3. int Cat::GetAge()
  4. {
  5.   return itsAge;
  6. }
  7. void Cat::SetAge(int age)
  8. {
  9.   itsAge=age;
  10. }
  11. void Cat::Meow()
  12. {
  13.   cout <<"Meow.n";
  14. }