求大神帮小弟看看这个程序哪里有问题!!
求长方柱的体积...#include<iostream>
using namespace std;
class cub
{int length;
int width;
int height;
int vol;
public:
void set();
void abs();
void show();
};
void cub::set()
{cin>>length;
cin>>width;
cin>>height;
}
void cub::abs()
{vol=length*width*height;
}
void cub::show()
{cout<<vol<<endl;
}
int main()
{void set();
void abs();
void show();
return 0;
}
没有错误但运行的时候就是直接:press and key to continue..
这是怎么回事?