lst-0164-book.cpp
if(zahl > 50) {
int ergebnis1 = zahl*zahl; // ein Ergebnis
std::cout << "Quadrat: " << ergebnis << std::endl;
int ergebnis2 = zahl+zahl; // noch ein Ergebnis
std::cout << "Verdoppelt: " << ergebnis << std::endl;
int ergebnis3 = zahl+zahl+zahl; // und noch ein Ergebnis
// … viele Zeilen Code dazwischen …
// und hier?
// … noch mehr Programmzeilen …
}