《数据结构》实验一 (2)

前端之家收集整理的这篇文章主要介绍了《数据结构》实验一 (2)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

第二题的源代码(运用函数模板):

#include<iostream>
#include<stdlib.h>
#include<iomanip>
using namespace std;

template<class T>
T add(T a,T b)
{
return a+b;
}
template<class T>
T multiply(T m,T n)
{
return m*n;
}
int main()
{
int x=4;int y=5;int z;
float i=4.5,j=3;float k;
k=add(i,j);
z=add(x,y);
cout<<"4+5="<<z<<endl;
cout<<"4.5+3="<<k<<endl;
cout<<"4*5="<<multiply(x,y)<<endl;
cout<<"4.5*3="<<multiply(i,j)<<endl;
system("pause");
return 0;
}

调试结果截图:


原文链接:https://www.f2er.com/datastructure/382982.html

猜你在找的数据结构相关文章