- 论坛徽章:
- 0
|
vc6.0
- #include <stdlib.h>
- #include <stdio.h>
- //#include <iostream.h>
- #include <string.h>
- //#include <ctype.h>
- //#include <conio.h>
- #include <time.h>
- #define NUMBER 99999999999 //终点
- #define START 2 //起点
- long one_count(long stop)
- {
- int num;
- long i;
- long count=0;
- char sData[12];
- for(i=1 ; i<=stop ;i++)
- {
- memset(sData , 0 , sizeof(sData));
- sprintf(sData , "%-ld" , i);
- // printf("sData:[%s]\n",sData);
- num=0;
- while( sData[num] != NULL )
- {
- if( sData[num] == '1')
- {
- count++;
- }
- num++;
- }
-
- // printf("count:[%ld]\n",count);
- if( (i == count) && (i>START) )
- {
- // printf("found:[%ld]\n",i);
- return(i);
- }
- }
-
- return(2);
- }//one_count func end
- int main(void)
- {
- long zzz;
- char timebuf1[20];
- char timebuf2[20];
- memset( timebuf1 , 0 , sizeof(timebuf1));
- memset( timebuf2 , 0 , sizeof(timebuf2));
- _strtime(timebuf1);
- zzz=one_count(NUMBER);
- if( zzz == 2 )
- {
- printf("No found.\n");
- }
- else
- printf("Found [%ld]\n",zzz);
- _strtime(timebuf2);
- printf("time1[%s].\n" ,timebuf1);
- printf("time2[%s].\n" ,timebuf2);
- return 0;
- }
复制代码
结果:
Found [199981]
time1[16:50:39].
time2[16:50:39].
Press any key to continue...
算是得到结果啦
没用递归 |
|