xt8-5.h
上传用户:liubin
上传日期:2022-06-13
资源大小:85k
文件大小:0k
源码类别:

书籍源码

开发平台:

Visual C++

  1. //xt8-5.h(arraymax.h)
  2. class Array_max
  3. {public:
  4.    void set_value();
  5.    void max_value();
  6.    void show_value();
  7.  private:
  8.    int array[10];
  9.    int max;
  10. };