Skip to content
Snippets Groups Projects
Loesung Uebungen 1 - Bauernhof.cpp 269 B
#include <iostream> 

using namespace std; 

int main()
{ 

    cout << "Welcome to the farm management" << endl; 

    system("PAUSE"); /* Depending on the compiler perhaps also getchar(); or cin.ignore(); and then cin.get(); or it can be omitted */ 
    return 0;

};