C++primer plus第六版课后编程练习答案7.3
#include#include#include using namespace std;struct box{ char maker[40]; float height; float width; float length; float volume;};void display(box b){ cout<<"盒子的制作人是"<<b.maker<<endl;