/*===========================================================================
* Function name:    CoverDex2N
* Parameter:        N: 转化为N进制, target:要转化的数(十进制描述)
* Precondition:        N > 0 && N < 10
* Description:        十进制转化为N进制,并输出
* Return value:        void
* Author:            Liu Qi, 200//
===========================================================================
*/

void CoverDex2N( unsigned int target, unsigned int N )
{
    
int residue;
    
    Stack s 
= STK_Create();
    
    assert( N 
> 0 && N < 10 );

    
while ( target > 0)
    
{
        residue 
= target % N;
        STK_Push( residue, s );
        target 
/= N;
    }


    
while ( !STK_IsEmpty( s ) )
    
{
        printf( 
"%d", STK_Top( s ) );
        STK_Pop( s );
    }


    printf(
"\n");
}