设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 488|回复: 0
打印 上一主题 下一主题

求助!这个重载函数错在哪里了?

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-6 01:49:47 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
编写程序的目的是为了让从键盘输入数据,能够找到相应的函数,从而取得最大值。问题就出在第三个和第四个函数上,不知道什么原因,高手帮忙一下哈!

#include "iostream"
using namespace std;
//定义函数
int max11(int,int);
int max11(int,int,int);
double max22(double,double);
double max22(double,double,double);
int main()
{
   
   
    //
    int a,b,c,max1;
    int d,e,f,max2;
   
    cout<<"input two int number:"<<endl;
    cin>>a>>b;
    max1=max11(a,b);
    cout<<"max="<<max1<<endl; //可以正常输出预想的数
   
    cout<<"input three int number:"<<endl;
    cin>>a>>b>>c;
    max1=max11(a,b,c);
    cout<<"max="<<max1<<endl;  //可以正常输出预想的数

   
    cout<<"input two double number:"<<endl;  //从这里开始就有问题了
    cin>>d>>e;
您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-19 16:32 , Processed in 0.096074 second(s), 8 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表