当前位置:首页 » 编程语言 » c语言文件内容比较
扩展阅读
webinf下怎么引入js 2023-08-31 21:54:13
堡垒机怎么打开web 2023-08-31 21:54:11

c语言文件内容比较

发布时间: 2022-03-05 21:35:14

❶ 编写c语言程序,用于比较两个正文文件内容相等(既字符相等)

本不想来啰嗦,但楼上的程序的确有缺陷。
如果两个文件长度不同,上面的程序就会得出错误结果。比如头一个文件内容为:abcde第二个文件内容为:abcdefg会得出错误结果。
程序改写如下,已编译通过:
#include <stdio.h>
#include <stdlib.h>

int main(){

FILE * f1 = fopen("dd.txt","r");/* 改为实际文件名 */
FILE * f2 = fopen("bb.txt","r");

char c1 = fgetc(f1);
char c2 = fgetc(f2);

while(!feof(f1) && !feof(f2)){

if(c1 != c2){printf("NO");system("pause");return 0;}
c1 = fgetc(f1);
c2 = fgetc(f2);
}

if(c1==EOF&&c2==EOF) /* 判断两个文件是否都到结尾 */
printf("YES");
else
printf("NO");
printf("\n");

fclose(f1);
fclose(f2);

system("pause");
return 0;
}

❷ C语言比较两个txt文件是否一样!

第一,你的第一个if语句里应该使用||而不是&&,第二,字符串比较不是直接比较的。要借助函数strcmp(str1,str2),如果一样就等于0

❸ C语言 对比两个文件内容的不同

#include<stdio.h>
#include<stdlib.h>
intmain(){
charfname1[100],fname2[100];
inti,j,a[100],b[100],n=0;
FILE*fp1,*fp2;

printf("Enterfirstfilename:");
scanf("%s",fname1);//
printf("Entersecondfilename:");
scanf("%s",fname2);//

fp1=fopen("fname1","r");
for(i=0;!feof(fp1);i++){
fscanf(fp1,"%d",&a[i]);
}
fclose(fp1);
fp2=fopen("fname2","r");
for(i=0;!feof(fp2);i++){
fscanf(fp2,"%d",&b[i]);
}
fclose(fp2);
for(j=0;j<i;j++)
if(a[j]!=b[j]){n=1;
printf("%sand%sarenotthesame",fname1,fname2);break;
}
if(n==0)
printf("%sand%sarethesame",fname1,fname2);

getch();
}

❹ C语言文件比较

check the two files

❺ c语言 比较文件内容

system("FC 001.txt 002.txt");
调用DOS操作系统的FC命令 相同就返回0 不同就把每个不同点输出来

❻ C语言中如何实现从文件读取一数据并和用户输入的进行比较

#include<stdio.h>

intmain()
{
FILE*fp=NULL;
charstr[100]={0};
charinput[100]={0};
fp=fopen("password.txt","r");
if(fp==NULL)
{
printf("openfilefailed ");
return-1;
}
fgets(str,sizeof(str),fp);
fclose(fp);
printf("pleaseinputpassword: ");
gets(input);

if(strcmp(input,str)==0)
{
printf("welcomelogin ");
}else
{
printf("passwordiswrong ");
}

return0;
}

❼ C语言指针读取文件内容比对

  • 基本的,你的代码有语法错误 printf(“登录失败”);这里的符号不是英文符号

  • 文本中保存的是两个字符串(空格隔开),你是想让第一个作为帐号,第二个为密码吗

  • fgets你指定了大小100,而且没有那么多字符能读取,所以它把整个文件中的所有字符都读取了,包含空格,gets()也一样。

  • 所以你输入帐号加密码,中间用空格隔开才是正确的输入方式

  • 然后我试了你的代码,得到了正确的结果,文本中保存的123456 789//注意如果后面有回车换行也可能造成你的错误

❽ 100分 c语言对比两个文件

最长公共子序列方法比较两个文件的相似性。输入两个文件的名字,输出一个文件,不同的地方用红色标出。

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

#define max(x,y) (((x)>(y))?(x):(y))

int LCS(char *str1, char *same1, int len1, char *str2, char *same2, int len2)
{
int same, i, j;
int **midLCS;

midLCS = (int **)malloc(sizeof(int *) * (len1 + 1));
for (i = 0; i <= len1; i++) {
midLCS[i] = (int *)malloc(sizeof(int) * (len2 + 1));
}
for (i = 0; i <= len1; i++) {
midLCS[i][0] = 0;
}
for (i = 0; i <= len2; i++) {
midLCS[0][i] = 0;
}

for (i = 1; i <= len1; i++)
{
for (j = 1; j <= len2; j++)
{
if (str1[i - 1] == str2[j - 1]) {
midLCS[i][j] = midLCS[i - 1][j - 1] + 1;
}
else {
midLCS[i][j] = max(midLCS[i - 1][j], midLCS[i][j - 1]);
}
}
}

for (i = len1, j = len2; i > 0 && j > 0; )
{
if (str1[i - 1] == str2[j - 1]) {
same1[i - 1] = 1;
same2[j - 1] = 1;
--i;
--j;
}
else if (midLCS[i - 1][j] > midLCS[i][j - 1]) {
--i;
}
else {
--j;
}
}

same = midLCS[len1][len2];
for (i = 0; i <= len1; i++) {
free(midLCS[i]);
}
free(midLCS);

return same;
}

void show_compare(char *str, char *same, int len, FILE *fout)
{
int i, flag = 0;

for (i = 0; i < len; i++)
{
if (str[i] == '\n') {
fprintf(fout, " <br> ");
}
else if (str[i] == '\t') {
fprintf(fout, " ");
}
else {
if (same[i] == 1) {
if (flag == 1) {
fprintf(fout, " </font> ");
flag = 0;
}
fputc(str[i], fout);
}
else {
if (flag == 0) {
fprintf(fout, " <font color=red> ");
flag = 1;
}
fputc(str[i], fout);
}
}
}
if (flag == 1)
fprintf(fout, " </font> ");
}

int main()
{
int i, len1, len2;
FILE *fin1, *fin2, *fout;
char buf[1024];
char *str1, *str2, *same1, *same2;

printf("file1: ");
scanf("%s", buf);
fin1 = fopen(buf, "rb");
if (fin1 == NULL) {
printf("%s not exist!\n", buf);
return 0;
}
printf("file2: ");
scanf("%s", buf);
fin2 = fopen(buf, "rb");
if (fin2 == NULL) {
printf("%s not exist!\n", buf);
return 0;
}
fout = fopen("compare.html", "w+");

fseek(fin1, 0, SEEK_END);
len1 = (int)ftell(fin1);
fseek(fin1, 0, SEEK_SET);
fseek(fin2, 0, SEEK_END);
len2 = (int)ftell(fin2);
fseek(fin2, 0, SEEK_SET);

str1 = (char *)malloc(sizeof(char) * len1);
str2 = (char *)malloc(sizeof(char) * len2);
same1 = (char *)malloc(sizeof(char) * len1);
same2 = (char *)malloc(sizeof(char) * len2);
fread(str1, 1, len1, fin1);
fread(str2, 1, len2, fin2);

LCS(str1, same1, len1, str2, same2, len2);

show_compare(str1, same1, len1, fout);
fprintf(fout, " ----------------------------------------------------------------<br> ");
show_compare(str2, same2, len2, fout);

free(str1);
free(str2);
free(same1);
free(same2);
fclose(fin1);
fclose(fin2);
fclose(fout);

}

❾ C语言打开TXT文档并且把里面内容进行比较

如果都是逗号‘,’分隔的话,在putchar(ch);后判断ch是不逗号就可以了,

if(','==ch)printf("
");

❿ 编写C语言程序,用于比较两个正文文件内容相等(既字符相等)

本不想来啰嗦,但楼上的程序的确有缺陷。
如果两个文件长度不同,上面的程序就会得出错误结果。比如头一个文件内容为:abcde第二个文件内容为:abcdefg会得出错误结果。
程序改写如下,已编译通过:
#include
<stdio.h>
#include
<stdlib.h>
int
main(){
FILE
*
f1
=
fopen("dd.txt","r");/*
改为实际文件名
*/
FILE
*
f2
=
fopen("bb.txt","r");
char
c1
=
fgetc(f1);
char
c2
=
fgetc(f2);
while(!feof(f1)
&&
!feof(f2)){
if(c1
!=
c2){printf("NO");system("pause");return
0;}
c1
=
fgetc(f1);
c2
=
fgetc(f2);
}
if(c1==EOF&&c2==EOF)
/*
判断两个文件是否都到结尾
*/
printf("YES");
else
printf("NO");
printf("\n");
fclose(f1);
fclose(f2);
system("pause");
return
0;
}