Tim so dong, so tu, so ky tu nhap tu ban phim *
/* Bai tap 1_67 - Tim so dong, so tu, so ky tu nhap tu ban phim */
#include <stdio.h>
void main()
{
int sokytu=0, dautu = 0, sotu=0, sodong=1;
char c, filename[50];
FILE *fp;
printf("
Cho biet ten tap tin muon xem : ");
gets(filename);
if ((fp = fopen(filename, "r")) == NULL)
printf("Khong tim thay tap tin %s", filename);
else
{
do {
putc(c = fgetc(fp), stdout);
if (c != '
' && c != EOF)
sokytu++;
if (isalnum(c) && dautu == 0)
{
sotu++;
dautu=1;
}
if (!isalnum(c) && dautu == 1)
dautu = 0;
if (c == '
')
sodong++;
} while (c != EOF);
fclose(fp);
printf("
So dong : %d", sodong);
printf("
So tu : %d", sotu);
printf("
So ky tu : %d", sokytu);
}
getch();
}
Bạn đang đọc truyện trên: Truyen247.Pro