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,31 +1,30 @@
#include <stdio.h>
int main()
{
int main() {
// Deklaration der Variablen
int hist[26] = {};
int hist[ 26 ] = {};
int i, k, c, count;
// 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 ]++;
}
}
// Histogramm ausgeben
printf("\n");
for (i=0; i<26; i++) {
count = hist[i];
if (count > 0) {
printf("%c : ",i+97);
for (k=0; k<count; k++)
printf("*");
printf("\n");
// Histogramm ausgeben
printf( "\n" );
for ( i = 0; i < 26; i++ ) {
count = hist[ i ];
if ( count > 0 ) {
printf( "%c : ", i + 97 );
for ( k = 0; k < count; k++ )
printf( "*" );
printf( "\n" );
}
}
return 0;
}
}