CHAPTER3-4.cpp
上传用户:fjc899
上传日期:2007-07-03
资源大小:187k
文件大小:1k
- //文件名:CHAPTER3-4.cpp
- #include <iostream.h>
- // 定义多态函数,找出三个整数中最小的数
- int min0(int ii, int jj, int kk)
- {
- int temp;
- if((ii<jj)&&(ii<kk)){temp=ii;}
- else if((jj<ii)&&(jj<kk)){temp=jj; }
- else{ temp=kk; }
- return temp;
- }
- // 定义多态函数,找出三个小数中最小的数
- float min1(float ii, float jj, float kk)
- {
- float temp;
- if((ii<jj)&&(ii<kk)){temp=ii;}
- else if((jj<ii)&&(jj<kk)){temp=jj; }
- else{ temp=kk; }
- return temp;
- }
- // 定义多态函数,找出三个子符中最小的字符
- char min2(char ii, char jj, char kk)
- {
- char temp;
- if((ii<jj)&&(ii<kk)) {temp=ii; }
- else if((jj<ii)&&(jj<kk)){temp=jj;}
- else{temp=kk;}
- return temp;
- }
- // 下面是主函数
- void main()
- {
- int temp1=min0(100,20,30);
- cout<<temp1<<endl;
- float temp2=min1(10.60,10.64,53.21);
- cout<<temp2<<endl;
- char temp3=min2('c','a','C');
- cout<<temp3<<endl;
- }