Skip to content
Snippets Groups Projects

Update Exercise 2 - Personal information.txt

Closed Omkar Akolkar requested to merge oa07987/vhb-cpp-en:oa07987-main-patch-02840 into main
1 file
+ 12
1
Compare changes
  • Side-by-side
  • Inline
@@ -13,4 +13,15 @@ First Name: Erika
Last Name: Engel
Age: 18
First Name, Last Name and Age should be output in a single statement.
\ No newline at end of file
First Name, Last Name and Age should be output in a single statement.
#include <iostream>
using namespace std;
int main()
{
cout <<"First Name: Max" << endl <<"Last Name: Mustermann" << endl << "Age:21" << endl;
cout <<"First Name: Erika Last Name: Engel Age: 18";
return 0;
}
\ No newline at end of file
Loading