# include template T abs(T x){if (x<0)x=-x;return x;}void main(){int a;float b;double c;cout<<"分别输入整数、单浮点数、双浮点数:";cin>>a>>b>>c;cout<<"int "<cout<<"float "<cout<<"double "<}