// 0407.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <assert.h>
#include <stdlib.h>
void output(int it)
{
//assert(it != NULL);
//int temp = 0;
if(it != 0)
{
output(it/10);
printf("it---------->%d\n", it%10);
}
}
int _tmain(int argc, _TCHAR* argv[])
{
output(1520);
system("pause");
return 0;
}