//Dev-C++ 5.11 (C)
#include
int main(void)
{FILE* f;
int counter=0,pre,next,b=1;
f=fopen("input.txt","r");
fscanf(f,"%d",&pre);
if (feof(f))
b=0;
else
fscanf(f,"%d",&next);
while (!(feof(f)) && b)
{if(pre counter++;
pre=next;
fscanf(f,"%d",&next);}
if(pre counter++;
fclose(f);
f=fopen("input.txt","a");
fprintf(f,"\n%d",counter);
fclose(f);
return 0;}
Пример содержимого input.txt до работы программы:
12
123124124
2132134
12412
123123312
12
12345
Пример содержимого input.txt после работы программы:
12
123124124
2132134
12412
123123312
12
12345
3