Skip to content
Snippets Groups Projects
Commit 1f313bd1 authored by Gesa Dolkemeyer's avatar Gesa Dolkemeyer
Browse files

new project

parent 3bd92f68
No related branches found
No related tags found
No related merge requests found
#include <bank.h>
#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
#include <iostream>
using namespace std;
int main () {
return 0;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment