mirror of
https://inf-git.fh-rosenheim.de/studavrije7683/cplusplus-training.git
synced 2025-04-19 22:49:55 +00:00
13 lines
218 B
C++
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;
|
|
|
|
}; |