C
cjban
Unregistered / Unconfirmed
GUEST, unregistred user!
[red]我在turbo c++3.0中输入如下程序:
#include <iostream.h>
template <typename T>
T abs(T x)
{
return x<0? -x:x;
}
void main()
{
int n=-5;
double d=-5.5;
cout<<abs<<endl;
cout<<abs(d)<<endl;
}
编译以后提示第二行出错:,expected;
请高手指教。感激涕淋[/red]
#include <iostream.h>
template <typename T>
T abs(T x)
{
return x<0? -x:x;
}
void main()
{
int n=-5;
double d=-5.5;
cout<<abs<<endl;
cout<<abs(d)<<endl;
}
编译以后提示第二行出错:,expected;
请高手指教。感激涕淋[/red]