newlines fixed

This commit is contained in:
Zachary Slater 2005-08-26 17:39:27 +00:00
parent 7830940da6
commit 59cce31e75
1121 changed files with 717537 additions and 717537 deletions

View file

@ -1,32 +1,32 @@
/* cf - print character frequencies */
float f[128];
main(argc, argv)
int argc;
char *argv[];
{
int i, c, nc;
float cutoff, atof();
if (argc <= 1)
cutoff = 0.0;
else
cutoff = atof(argv[1])/100;
for (i = 0; i <= 127; )
f[i++] = 0.0;
nc = 0;
while ((c = getchar()) != -1) {
f[c] += 1;
nc++;
}
printf("char\tfreq\n");
for (i = 0; i <= 127; ++i)
if (f[i] && f[i]/nc >= cutoff) {
if (i <= ' ')
printf("%03o", i);
else
printf("%c", i);
printf("\t%.1f\n", 100*f[i]/nc);
}
return 0;
}
/* cf - print character frequencies */
float f[128];
main(argc, argv)
int argc;
char *argv[];
{
int i, c, nc;
float cutoff, atof();
if (argc <= 1)
cutoff = 0.0;
else
cutoff = atof(argv[1])/100;
for (i = 0; i <= 127; )
f[i++] = 0.0;
nc = 0;
while ((c = getchar()) != -1) {
f[c] += 1;
nc++;
}
printf("char\tfreq\n");
for (i = 0; i <= 127; ++i)
if (f[i] && f[i]/nc >= cutoff) {
if (i <= ' ')
printf("%03o", i);
else
printf("%c", i);
printf("\t%.1f\n", 100*f[i]/nc);
}
return 0;
}