mirror of
https://inf-git.fh-rosenheim.de/studavrije7683/cplusplus-training.git
synced 2025-04-19 15:59:56 +00:00
11 lines
251 B
C++
11 lines
251 B
C++
#include <iostream>
|
|
|
|
using namespace std;
|
|
int main(){
|
|
cout << "Vorname:\tMax"<<endl;
|
|
cout << "Nachname:\tMustermann"<<endl;
|
|
cout << "Alter:\t\t21"<<endl<<endl;
|
|
|
|
cout << "Vorname:\tErika\nNachname:\tEngel\nAlter:\t\t18";
|
|
return 0;
|
|
} |