// ( x4.C ) // テンプレ−ト機能 // #include template Type maxof( Type x[],int n ) { Type max = x[0] ; return (max); } main() {}