0001 __int64 facR ( int n ) { return ( n < 1 ) ? 1 : n * facR ( n - 1 ); } //½×³ËÔËË㣨µÝ¹é°æ£©