当前位置: 代码迷 >> C语言 >> 一个小程序,结果不对,麻烦大家看一下
  详细解决方案

一个小程序,结果不对,麻烦大家看一下

热度:104   发布时间:2007-08-11 22:52:00.0
一个小程序,结果不对,麻烦大家看一下

题目:随便输入一个字符串,例如:a123x456-7689?89njmk321nk123
将连续的数字作为一个整数,计算整数的个数,分别输出,例如,该字符串应该有六个数,分别是:123 456 7689 89 321 23

以下是我的程序:
#include <stdio.h>
#include <math.h>
#include <stdlib.h>
int main()
{
char *s;
int n,i,j,l,*p;
printf("please enter a string:\n");
s=(char*)malloc(30);
gets(s); //输入字符串
p=(int*)malloc(30*2); //将找出的数分别存到指针p里面
i=0;
j=0;
n=0;
*p=0;
while((*(s+i))!='\0')
{
if((*(s+i)<='9')&&(*(s+i)>='0')) //检查是不是数字字符
j++;
else
{
if(j>0) //连续数字后的第一个非数字字符
{
n++;
for(l=1;l<=j;l++) //将连续数字求出来并存与p中
*(p+n-1)=*(p+n-1)+(*(s+i-l)-48)*((int)pow(10,l-1));
j=0;
}
}
i++;
}
if(j>0) //以数字结尾的字符串的最后一个数据
{
n++;
for(l=1;l<=j;l++)
*(p+n-1)=*(p+n-1)+(*(s+i-l)-48)*((int)pow(10,l-1));
}
printf("there are %d numbers in the string,they are:\n",n);
for(i=0;i<n;i++)
printf("%5d",*(p+i));
free(s);
free(p);
return 0;
}
编译没错,但是运行结果不对,不知道哪里错了,请大家帮忙看一下,谢谢!

搜索更多相关的解决方案: 结果  麻烦  

----------------解决方案--------------------------------------------------------

汗不用那么麻烦了,这样就可以了

#include <stdio.h>
#include <memory.h>
#include <malloc.h>
#include <string.h>

int _tmain(int argc, _TCHAR* argv[])
{
char *s = (char*)malloc(30);
memset(s,0,sizeof(s));
gets(s);

char * pend = s+strlen(s)-1;

while ( 1 )
{
if (!( *pend<='9' && *pend>='0'))
{
if ( '\0' != *(pend+1) ) puts(pend+1);
*pend = '\0';
}
if ( pend == s)
{
if('\0' != pend) puts(pend);
break;
}
else pend--;
}
free(s);
return 0;
}

[此贴子已经被作者于2007-8-12 1:04:22编辑过]


----------------解决方案--------------------------------------------------------
你只是分配了p所指向的空间,而没有分配p+1所指向的空间,所以当p=0的时候,p所指向的空间被初始化为0,为p+1空间没有被初始化就是乱码,而且p+n,n&gt;0的都是乱码。
----------------解决方案--------------------------------------------------------
  相关解决方案