用C++或者Java写个程序统计两个txt文件中(英文的)相同字符的个数和不同字符个数

2025-04-03 16:09:57
推荐回答(2个)
回答1:

#include 
#include 

int c1[128]={0},c2[128]={0};

int func(const char *filename,int no)
{
FILE *fp = NULL;
fp = fopen(filename,"r");
if (fp==NULL)
{
printf("open file 1 failed\r\n");
return -1;
}else
{
char ch;
while(!feof(fp))
{
ch=fgetc(fp);
if(no==1)
c1[ch]++;
if(no==2)
c2[ch]++;
}
fclose(fp);
}
return 0;
}

int main()
{
int i=0,xt=0,bt =0;
func("123.txt",1);
func("456.txt",2);

for (i=0;i<128;i++)
{
if (c1[i]!=0 && c2[i]!=0)
{
if (c1[i]==c2[i])
{
xt++;
}else
{
bt++;
}
}
}
printf("same [%d] diff[%d]\r\n",xt,bt);
return 0;
}
same [9] diff[5]
Press any key to continue

123.txt内容  qwfs12342rsfsgfb2 236#$%^&*(sdf

456.txt内容 sg234y#$%^&*9gdfiodfjnhdsdf sdfsdf

回答2:

还需要吗?