Initial commit

This commit is contained in:
studavrije7683
2021-10-15 08:36:02 +02:00
commit d3138a4b13
89 changed files with 2898 additions and 0 deletions
@@ -0,0 +1,13 @@
#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;
};
@@ -0,0 +1,17 @@
#include <cstdlib>
#include <iostream>
using namespace std;
int main()
{
cout << "Vorname: Max" << endl;
cout << "Nachname: Mustermann" << endl;
cout << "Alter: 21" << endl;
cout << "Vorname: Erika" << endl << "Nachname: Engel " << endl << "Alter: 18" << endl;
system("pause");
return 0;
}