资源预览内容
第1页 / 共68页
第2页 / 共68页
第3页 / 共68页
第4页 / 共68页
第5页 / 共68页
第6页 / 共68页
第7页 / 共68页
第8页 / 共68页
第9页 / 共68页
第10页 / 共68页
亲,该文档总共68页,到这儿已超出免费预览范围,如果喜欢就下载吧!
资源描述
/根据半径计算圆的周长和面积#include const float PI=3.1416; /声明常量(只读变量)PI为3.1416float fCir_L(float); /声明自定义函数fCir_L()的原型 float fCir_S(float); /声明自定义函数fCir_S()的原型 /以下是main()函数 main() float r,l,s; /声明3个变量 coutr; /键盘输入 l=fCir_L(r); /计算圆的周长,赋值给变量l s=fCir_S(r); /计算圆的面积,赋值给变量s coutl=l; /显示计算结果 coutns=0.0) /如果参数大于0,则计算圆的周长 z=2*PI*x; return(z); /返回函数值 /定义计算圆的面积的函数fCir_S()float fCir_S(float x) float z=-1.0; /声明局部变量 if (x=0.0) /如果参数大于0,则计算圆的面积 z=PI*x*x; return(z); /返回函数值 /* Program: P1-2.CPP Written by: Hap Date written: 02:11:10*/#include void main(void) double s1,s2,s3; s1=1.5; /* 对变量s1赋值*/ couts1=s1endl; /* 对变量s2赋值*/ s2=2.5; couts2=s2endl; s3= /* 对变量s3赋值*/ 3.5; couts3=s3endl; couts1+s2+s3=s1+s2+s3endl; /计算并显示 /计算并显示 couts1+s2+s3=s1+s2+s3endl; #include main() double r=1.0; coutr=rendl; double l; l=2*3.1416*r; /计算圆的周长,赋值给变量l coutl=lendl; /显示圆的周长 double s=3.1416*r*r; /计算圆的面积,赋值给变量s couts=sendl; /显示圆的面积 coutr; /键盘输入 l=2*3.1416*r; /计算圆的周长,赋值给变量l coutl=lendl; /显示圆的周长 s=3.1416*r*r; couts=sendl; /显示圆的面积#include /包含iostream.h头文件void main() /输出字符常量、变量和字符串 char c1=A; coutW; coutc1endl; coutThis is a test.endl; cout-endl; /输出整型常量、变量和表达式 int n=100; cout10; coutn; cout2*nendl; /输出整型表达式 cout-endl; /输出浮点型常量、变量和表达式 double pi=3.1415926,r=10.0,s=pi*r*r; coutpiendl; coutr; couts; cout2*r*piendl; /输出浮点型表达式 cout-endl; /一个cout可以输出多项数据 coutW c1endl; coutThis is a test.endl; coutpi=pi r=r s=sendl;#include /包含iostream.h头文件main() /输入输出字符 char c; cinc; coutc=cn; coutn=nx; coutx=xendl; /输入提示 coutn; coutn=nendl; /多项输入 coutc n xcnx; coutc=c n=n x=xendl;#include /包含iostream.h头文件main() /声明整型变量 int a,b; /从键盘上为整型变量赋值 couta; coutb; /整型数的算术运算 couta+b=a+bendl; couta-b=a-bendl; couta*b=a*bendl; couta/b=a/bendl; couta%b=a%bendl; /测试溢出 short n=32767,m; /n取short类型的最大值 coutn=nendl; m=n+1; /引起溢出 coutn+1=mendl;#include /包含iostream.h头文件main() /声明变量,并初始化 int a=010,b=10,c=0X10; /以十进制形式显示数据 coutDEC:; cout a=a; cout b=b; cout c=cendl; /以八进制形式显示数据 coutOCT:; coutoct; /指定八进制输出 cout a=a; cout b=b; cout c=cendl; /以十六进制形式显示数据 coutHEX:; couthex; /指定十六进制输出 cout a=a; cout b=b; cout c=cendl; /八、十和十六进制数混合运算并输出 couta+b+c=; coutdec; /恢复十进制输出 couta+b+cendl; /测试八、十和十六进制输入 couta; coutb; coutc; coutDEC:decendl; /指定十进制输出 couta=aendl; coutb=bendl; coutc=cendl;#include /包含iostream.h头文件#include / iomanip.h头文件包含setprecision()的定义main() /float型变量的声明、输入、计算和输出 float fx,fy; coutfx; coutfy; coutfx+fy=fx+fyendl; coutfx-fy=fx-fyendl; coutfx*fy=fx*fyendl; coutfx/fy=fx/fyendlendl; /coutfx%fy=fx%fyendl; Error! /double型变量的声明、输入、计算和输出 float dx,dy; coutdx; coutdy; coutdx+dy=dx+dyendl; coutdx-dy=dx-dyendl; coutdx*dy=dx*dyendl; coutdx/dy
收藏 下载该资源
网站客服QQ:2055934822
金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号