mirror of
https://inf-git.fh-rosenheim.de/studavrije7683/cplusplus-training.git
synced 2025-04-19 15:59:56 +00:00
18 lines
327 B
C++
18 lines
327 B
C++
#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;
|
|
}
|
|
|