There really is no hope of making this code even half-way decent without
spending the time to rewrite them all properly. Don't want to do any of
that
This commit is contained in:
2025-11-03 17:08:35 +01:00
parent 21a17e33fa
commit ede0ee318b
48 changed files with 1219 additions and 582 deletions

View File

@@ -1,30 +1,28 @@
#include <stdio.h>
int main()
{
int main() {
// Deklaration der Variablen
int hist[26] = {};
int hist[ 26 ] = {};
int i, k, c, count;
int num = 0;
// Zeichen bis EOF einlesen (nur a-z werden berücksichtigt)
// EOF wird im Terminal mit CTRL-D eingegeben!
while ((c = getchar()) != EOF) {
if ((c>96) && (c<123)) {
while ( ( c = getchar() ) != EOF ) {
if ( ( c > 96 ) && ( c < 123 ) ) {
// Zähler für diesen Buchstaben erhöhen
hist[c-97]++;
hist[ c - 97 ]++;
num++;
}
}
// Histogramm ausgeben
printf("\n");
for (i=0; i<26; i++) {
count = hist[i];
if (count > 0) {
printf("%c : %f\n",i+97, (count/(float)num)*100);
}
// Histogramm ausgeben
printf( "\n" );
for ( i = 0; i < 26; i++ ) {
count = hist[ i ];
if ( count > 0 )
printf( "%c : %f\n", i + 97, ( count / (float) num ) * 100 );
}
return 0;
}
}