Browse Source

Funktion für Volumenberechnung erstellt

remotes/origin/siamak
Siamak 11 months ago
parent
commit
7547e3585d
  1. 4
      src/c/funktionen.c

4
src/c/funktionen.c

@ -117,6 +117,10 @@ int o_wins_02_11_20(char board[][3]) {
}
}
float volume(float a, float b, float c) {
return a * b * c;
}
int stringCharacterCounter(char string[]) {
int stringLength = 0;

Loading…
Cancel
Save