Define a class to represent a bank account. Include the
following
members:
Data Members:
Name of the Depositor
Account Number
Type of Account
Balance amount in the account
Member Functions:
To assign the initial values.
To deposit an account.
To withdraw an amount after checking the balance.
Write a C++ main program to display account number,
name and
balance.
Answer Posted / akash jadhav
#include<iostream.h>
#include<conio.h>
#include<string.h>
class bank
{
char name[20];
int ano;
char atype[20];
float bal;
public:
void get(int no,char *n,char *t,float b)
{
strcpy(name,n);
ano=no;
strcpy(atype,t);
bal=b;
}
float deposit()
{
float amt;
cout<<“
Enter amount: “;
cin>>amt;
bal=bal+amt;
return bal;
}
float withdrw()
{
float amt;
cout<<“
How many Rupees withdraw: “;
cin>>amt;
bal=bal-amt;
return bal;
}
void disp()
{
cout<<“
Account number: “<<ano;
cout<<“
Name: “<<name;
cout<<“
Account type: “<<atype;
cout<<“
Deposit Amount: “<<deposit();
cout<<“
After Withdraw Amount balnace: “<<withdrw();
}
};
void main()
{
int n;
char nm[20],t[20];
float a;
bank bk;
clrscr();
cout<<“
Enter Account no.: “; cin>>n;
cout<<“
Enter Name: “; cin>>nm;
cout<<“
Enter account type: “; cin>>t;
cout<<“
Enter balance amount: “;cin>>a;
bk.get(n,nm,t,a);
bk.disp();
getch();
}
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
Why is polymorphism needed?
What does it mean when someone says I oop?
What is encapsulation in oop?
design a c++ class for the chess board,provide a c++ class definition for such class(only class definition is required)
What is abstraction in oop with example?
What is polymorphism used for?
What is constructor overloading in oop?
What is oops in simple words?
Write a program to implement OOPS concepts such as inheritance, polymorphism, friend function, operator overloading?
What is polymorphism and types?
Is this job good for future? can do this job post grduate student?
What is inheritance in oop?
What is static modifier?
What is the importance of oop?
just right the logic of it 1--> If few people are electing then every time ur candidate should win 2--> arrange books in box, if box carry weight == books weight then take another box..... find the no of box required.