lst-0050-book.cpp
#include <iostream> // für std::cin, std::cout, std::endl
#include <string> // für std::stoi
void berechne(int n) {
using namespace std; // für std::cout und std::endl
/* Teiler ausgeben */
cout << "Teiler von " << n << " sind:\n"; // cout statt std::cout
for(int teiler=1; teiler <= n; ++teiler) {
if(n % teiler == 0)
cout << teiler << ", "; // cout statt std::cout
}
cout << endl;
}