首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴hzj199603的代码贴全部
#include <iostream>
using namespace std;
class volume
{
private:
int length;
int width;
int heigth;
public:
void set_volume(void);
void show_volume(void);
};
......................
阅读全部 | 2015年3月29日 22:26
1
hzj199603