| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 414 人关注过本帖
标题:帮忙我解决error问题
取消只看楼主 加入收藏
晓宁
Rank: 1
等 级:新手上路
帖 子:22
专家分:0
注 册:2011-9-7
结帖率:71.43%
收藏
已结贴  问题点数:7 回复次数:0 
帮忙我解决error问题
//This program demonstrates function templates.
#include<iostream>、
using namespace std;

template<class Type>
Type Max(Type x,Type y)
{
    return(x>y)?x:y;
}

template<class Type>
void Swap(Type& x,Type y)
{
    Type temp;
    temp=x;
    x=y;
    y=temp;
}

template<class TypeA,class TypeB>
TypeA Func(TypeA x,TypeB y)
{
    TypeA r;
    r= 3*x + 2*y;
    return r;
}

template<class Type>
Type Sum(Type[],int n)
{
    Type t=0;
    for(int i=0;i<n;++i)
        t+=a[i];
    return t;
}

int main()
{
    int i=3,j=5;
    double d=8.62;,e=4.14;

    float f_arr[6]={1.2,2.3,3.4,4.5,5.6,6.7};
    int i_arr[4]={4,5,6,7};

    cout<<"i="<<i<<"and j="<<j<<endl;
    cout<<"d="<<d<<"and e="<<e<<endl<<endl;
    cout<<"The larger of i and j is "<<Max(i,j)<<endl;
    cout<<"The larger of dand e is "<<Max(d,e)<<endl<<endl;
    Swap(i,j);
    Swap(d,e);
    cout<<"i="<<i<<"and j="<<j<<endl;
    cout<<"d="<<d<<"and e="<<e<<endl<<endl;
    cout<<"Func() applied to i and d is"<<Func(i,d)<<endl;
    cout<<"Func() applied ro d and i is"<<Func(d,i)<<endl<<endl;
    cout<<"The sum of f_arr[] is "<<Sum(f_arr,6)<<endl;
    cout<<"The sum of i_arr[] is "<<Sum(i_arr,4)<<endl;
    return 0;
}
搜索更多相关主题的帖子: function include return 
2011-09-18 21:36
快速回复:帮忙我解决error问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.037232 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved