欢迎来到天天文库
浏览记录
ID:18466494
大小:57.50 KB
页数:24页
时间:2018-09-18
《面向对象编程教程_王育坚vc__第2版_第二章课后习题》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、2-45编写一个程序,输入三角形的三条边的边长,求三角形的面积。2-45#include#includeintmain(){inta,b,c;ints,S;cin>>a>>b>>c;s=(a+b+c)/2;S=powl(s*(s-a)*(s-b)*(s-c),0.5);if(S==0)cout<<"此三边不能构成三角形!"<intmain
2、(){charch;inta;cout<<"输入一个大写字母:"<>ch;if(ch>=65&&ch<=91){ch=ch+32;//a=(int)ch;cout<intmain(){intvalue1,value2;intresult;cin>>value1>>valu
3、e2;result=value1+value2-value1%value2;cout<<"该整数为:"<intmain(){constfloati=32.0;constfloatj=5.0/9.0;floatdegFahr;floatdegCel;cin>>degFahr;//for(degFahr=0;degFahr<=300;de
4、gFahr+=10)//{degCel=j*(degFahr-i);cout<<"华氏温度:"<intmain(){intArray[20];inti,count=0,c=0;for(i=0;i<20;i++)cin>>Array[i];for(i=0;i<20;i++){if(Array[i]==100&&count==0){cout<
5、<"100存在该数组中!"<intmain(){intArray[100][100]={0};intn,temp;cin>>n;for(inti=0;i6、(intj=0;j>Array[i][j];for(intx=0;x#includ7、eintmain(){intArray[3];int*pA=Array;int*a=Array;inti;inttemp;for(i=0;i<3;i++)cin>>Array[i];for(i=0;i<3;i++){a++;if(*pA<*a){temp=*pA;*pA=*a;*a=temp;a++;pA++;}a=&Array[0];}for(i=0;i<3;i++)cout<
6、(intj=0;j>Array[i][j];for(intx=0;x#includ
7、eintmain(){intArray[3];int*pA=Array;int*a=Array;inti;inttemp;for(i=0;i<3;i++)cin>>Array[i];for(i=0;i<3;i++){a++;if(*pA<*a){temp=*pA;*pA=*a;*a=temp;a++;pA++;}a=&Array[0];}for(i=0;i<3;i++)cout<
此文档下载收益归作者所有