概述
#include<iostream>
#include<cmath>
#include <string>
using namespace std;
struct box
{
char maker[40];
float height;
float width;
float length;
float volume;
};
void display(box b)
{
cout<<"盒子的制作人是"<<b.maker<<endl;
cout<<"盒子的长度为"<<b.length<<endl;
cout<<"盒子的宽度为"<<b.width<<endl;
cout<<"盒子的高度为"<<b.height<<endl;
cout<<"盒子的体积为"<<b.volume<<endl;
}
void calculatev(box *b)
{
b->volume=b->length*b->width*b->height;
}
void main()
{
box b={"sundi",3,2,4,};
calculatev(&b);
display(b);
}
最后
以上就是炙热鸡翅为你收集整理的C++primer plus第六版课后编程练习答案7.3的全部内容,希望文章能够帮你解决C++primer plus第六版课后编程练习答案7.3所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复