lst-0021-godb.cpp
//#(execute) c++; compiler:g132; options:-O3 -std=c++23; libs:-
// https://godbolt.org/z/qWxq4KEKr
void berechne(int n) { // eine eigene Funktion
using namespace std; // für std::cout und std::endl
/* Teiler ausgeben */
cout << "Teiler von " << n << " sind:\n";
for(int teiler=1; teiler <= n; ++teiler) { // statt teiler=teiler+1
if(n % teiler == 0)
cout << teiler << ", ";
}
cout << endl;
}