lst-0051-book.cpp
#include <iostream>
#include <string>
using namespace std; // (ERR) wirkt sich global aus; klappt, ist aber kritisch
void berechne(int n) {
/* Teiler ausgeben */
cout << "Teiler von " << n << " sind:\n";
// …
}
// … auch in weiteren Funktionen …