Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
VHB C++ EN
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Rudi Buss
VHB C++ EN
Merge requests
!4
Update Exercise 2 - Personal information.txt
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Update Exercise 2 - Personal information.txt
oa07987/vhb-cpp-en:oa07987-main-patch-38408
into
main
Overview
0
Commits
1
Pipelines
0
Changes
1
Closed
Omkar Akolkar
requested to merge
oa07987/vhb-cpp-en:oa07987-main-patch-38408
into
main
6 months ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
1a5add3c
1 commit,
6 months ago
1 file
+
12
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Part 1/1. Introduction to programming/Exercises/Exercise 2 - Personal information.txt
+
12
−
1
Options
@@ -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