2021-10-15 08:36:02 +02:00

13 lines
218 B
C++

#include<iostream>
using namespace std;
int main()
{
cout << "Willkommen bei der Bauernhofverwaltung" << endl;
system("PAUSE"); /*Compilerabhängig, evtl. auch getchar(); oder es kann entfallen */
return 0;
};