Das ist nun in C geschrieben:
C
#include <stdio.h>
void teilerErmitteln(int zahl) {
int counter = 1;
while (counter <= zahl) {
if (zahl % counter == 0) printf("%i", counter);
counter++;
}
}
int main() {
teilerErmitteln(6);
return 0;
}
Alles anzeigen
Struktogramm kriegt er ja wohl selbst hin, hoffentlich..