Browse Source

umdrehenWort Funktion hinzugefuegt

remotes/origin/wortspieldev
Lennart Goetze 11 months ago
parent
commit
4435a7e1e8
  1. 13
      src/WortSpiel.c

13
src/WortSpiel.c

@ -30,6 +30,16 @@ int zaehleBuchstaben(const char *wort, char buchstabe) {
return zaehler;
}
void umdrehenWort(char *wort) {
int laenge = strlen(wort);
for (int i = 0, j = laenge - 1; i < j; i++, j--) {
char temp = wort[i];
wort[i] = wort[j];
wort[j] = temp;
}
}
int run_wortspiel() {
char wort[50];
@ -47,6 +57,9 @@ int run_wortspiel() {
int anzahl = zaehleBuchstaben(wort, buchstabe);
printf("Der Buchstabe '%c' kommt %d Mal vor.\n", buchstabe, anzahl);
umdrehenWort(wort);
printf("Wort nach dem Umdrehen: %s\n", wort);
return 0;
}
Loading…
Cancel
Save