C++程序设计习题作业
班级:力硕21
姓名:汪振兴
学号:2121702016
习题2:输入长宽高(为实数),计算长方体的表面积和体积。
【源程序】:
/* example1-2 长方体问题*/
#include using namespace std; int main() { double length,width,high,circumference,surface_area,volume; cout<<\"Please input length,width,high:\"< circumference=4*(length+width+high); surface_area=2*(width*length+width*high+high*length); volume=length*width*high; cout<<\"长方形周长是\"< } 程序调试: 习题5:编写程序,打印矩阵 【源程序】: /* example1-5*/ #include using namespace std; int main() { cout<<\"********************\"< } 程序调试: 习题6:编写程序,打印如下图所示的卡片,其中姓名和电话号码从键盘输入。 【源程序】: /*example 1-6imput kapian*/ #include using namespace std; int main() { char name[30]; char tel[30]; cout<<\"Please input name\"< cout<<\"Please input tel\"; cin>>tel; cout<<\"*******************************\"< } 程序调试: 习题7:输入n计算函数值 【源程序】: /*example1-7print function*/ #include #include using namespace std; int main() { int n; double y; cin>>n; y=pow((1.0+1.0/n),n); cout< } 程序调试: 习题8:输入大于0的数,计算函数y=f(x)的函数值。 【源程序】: /*example1-8 print funtion*/ #include #include using namespace std; int main() { double x,y; cout<<\"输入一个大余0的数x\"; cin>>x; y=sin(x)-log(x)+sqrt(x)-5; cout< } 程序调试: 习题10:输入x,a计算y=f(x)的函数值。 【源程序】: /*example1-10*/ #include #include using namespace std; int main() { double x,a,y; cout<<\"Please input x\"< cout<<\"Please input a,a>0 and a not 0\"< y=log(x+log(sqrt(x*x+1)))/log(a); cout< } 程序调试: 因篇幅问题不能全部显示,请点此查看更多更全内容