- 论坛徽章:
- 0
|
呵呵,短一点的版本:
#include <stdio.h>
#include <string.h>
char *fun(char *s)
{
int i = strlen(s);
while (i-- && s[i] == '9' ? s[i] = '0' : (s[i] += 1, 0));
return s;
}
int main()
{
char s[] = "00000000000000000000000000";
while (1)
puts(fun(s));
return 0;
}
|
也可以这样写,一样的道理,只是把那个 while 展开了:
#include <stdio.h>
#include <string.h>
char *fun(char *s)
{
int i = strlen(s);
while (i--)
if (s[i] == '9')
s[i] = '0';
else {
s[i] += 1;
break;
}
return s;
}
int main()
{
char s[] = "00000000000000000000000000";
while (1)
puts(fun(s));
return 0;
}
|
代码格式乱了,害我编辑一编~~
[ 本帖最后由 windaoo 于 2009-7-29 02:20 编辑 ] |
|