为啥用vs2013编译时,外部依赖项里的头文件会出错呢
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励20(财富值+成长值)
1个回答
展开全部
#include <iostream>
using namespace std;
template <class ElemType>
ElemType Max(ElemType a, ElemType b)
{
return (a > b) ? a : b;
}
int main(void)
{
cout << Max(16, 518) << endl;
cout << Max(16.8, 518) << endl;
system("pause");
return 0;
}
using namespace std;
template <class ElemType>
ElemType Max(ElemType a, ElemType b)
{
return (a > b) ? a : b;
}
int main(void)
{
cout << Max(16, 518) << endl;
cout << Max(16.8, 518) << endl;
system("pause");
return 0;
}
追问
这是咋?
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询