- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
#include <stdio.h>
#include <tchar.h>
#define MVALUE 6
void bufret(int pos, int limit, int maxlimit, bool direction)
{
putchar((char)((pos&0xff)+0x30)) ;
if(((pos<limit)&&direction)||((pos>1)&&(!direction)))
{
putchar('-') ;
if(direction)
pos++ ;
else
pos--;
}
else
{
limit++ ;
if(direction)
pos=limit;
else
pos=1 ;
direction=!direction ;
putchar('\n') ;
}
if(limit < maxlimit)
bufret(pos,limit,maxlimit,direction) ;
}
int _tmain(int argc, _TCHAR* argv[])
{
bufret(1, 1, MVALUE+1, true) ;
getchar() ;
return 0;
}