都调试通过了
第一题:
#include "iostream"
using namespace std;
template
T getmin(T&x,T&y)
{
return x
int _tmain(int argc, _TCHAR* argv[])
{
float x,y;
cout<<"请输入两个数:";
cin>>x>>y;
cout<
}
第二题:
#include "iostream"
using namespace std;
template
void numsort(T&x,T&y,T&z)
{
T temp;
if(x>y)
{
temp=x;x=y;y=temp;
}
if(x>z)
{
temp=x;x=z;z=temp;
}
if(y>z)
{
temp=y;y=z;z=temp;
}
}
int _tmain(int argc, _TCHAR* argv[])
{
int x,y,z;
cout<<"请输入三个数:";
cin>>x>>y>>z;
numsort(x,y,z);
cout<<"这三个数按从小到大的顺序排列后为"<
}