1.回车符的问题
2.main 不能随便调用
1.回车符的问题怎么解决???
2.改了程序,即便不调用mian函数仍然不行
以下是改后代码:
#include <stdio.h>
#include <malloc.h>
#include "stdlib.h"
#include "string.h"
#define maxsize 100
char s[maxsize];
char p[maxsize];
char t[maxsize];
int k[10];
void index(char *a,char *b)
{
k[0]=-1;
int i,j,m,n;
i=0;j=0;m=0;n=0;
while(a[i]!='\0')
{
if(a[i]==b[j])
{
++i;++j;
}
else
{
i=i-j+1;j=0;
}
if(b[j]=='\0')
{
n=i-j;
k[m]=n;
k[m+1]=-1;
++m;
}
}
}
void func()
{
printf("\n");
printf("\n");
printf(" 第四章 字符串的匹配与替换 \n");
printf("\n");
printf("\n");
printf(" by 强波 学号:06040648 \n");
printf(" \n");
printf(" 2006.3\n");
printf("\n");
printf("********************************************************************************\n");
printf("请输入原始字符串.\n");
gets(s);
printf("请输入要查找的字符串P.\n");
gets(p);
printf("你想要把字符串%s替换为什么?.\n",p);
gets(t);
printf("\n");
printf("\n");
printf("Load..............\n");
printf("*************************\n");
index(s,p);
char x[100];
int e=0,f=0,g=0,h=0,i=0,j=0,l=0;
f=strlen(p);
g=strlen(t);
strcpy(x,s);
if(k[0]!=-1)
{
i=k[e];
for(;k[e]!=-1;)
{
strcpy(&s[i],t);
i=i+g;
h=k[e]+f;
strcpy(&s[i],&x[h]);
e++;
i=k[e]+(g-f)*e;
}
printf("替换完成,这里是输入结果:\n");
printf("%s\n",s);
}
else
{
printf("对不起,没有匹配字符串,原始字符串没有改动\n");
printf("%s\n",s);}
}
void main()
{
func();int o;
printf("退出请按1,其他任意键继续\n");
scanf("%d",&o);
if(o==1)
{
exit(1);
}
func();
}
int main(void) //void=》int
{
char c;
while(1)
{
func();
printf("退出请按Q,其他任意键继续\n");
char Key = getchar();
if(Key=='q'||Key=='Q') exit(1);
while ( (c=getchar()) != '\n' && c != EOF ) ;
}
return 0;
}
斑竹是猛人!!!!
谢谢了,呵呵
只是: while ( (c=getchar()) != '\n' && c != EOF ) ;
这句代码我不大懂,能不能麻烦斑竹解释一下呢?
[此贴子已经被作者于2006-3-15 14:14:22编辑过]