Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
Propa
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container 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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gesa Dolkemeyer
Propa
Commits
1f313bd1
Commit
1f313bd1
authored
2 years ago
by
Gesa Dolkemeyer
Browse files
Options
Downloads
Patches
Plain Diff
new project
parent
3bd92f68
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
BankMS/bank.cpp
+2
-0
2 additions, 0 deletions
BankMS/bank.cpp
BankMS/bank.h
+19
-0
19 additions, 0 deletions
BankMS/bank.h
BankMS/main.cpp
+8
-0
8 additions, 0 deletions
BankMS/main.cpp
with
29 additions
and
0 deletions
BankMS/bank.cpp
0 → 100644
+
2
−
0
View file @
1f313bd1
#include
<bank.h>
This diff is collapsed.
Click to expand it.
BankMS/bank.h
0 → 100644
+
19
−
0
View file @
1f313bd1
#include
<iostream>
using
namespace
std
;
class
BankAccount
{
private:
int
account_number
;
string
account_holder
;
float
account_balance
;
public:
BankAccount
(
string
name
,
float
balance
);
//constructor
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
BankMS/main.cpp
0 → 100644
+
8
−
0
View file @
1f313bd1
#include
<iostream>
using
namespace
std
;
int
main
()
{
return
0
;
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment