-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUseAccount.java
62 lines (48 loc) · 1.07 KB
/
UseAccount.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import java.util.Scanner;
class Account {
private int accountno;
private double balance;
public void setAccountno(int ac){
accountno = ac;
}
public int getAccountno(){
return accountno;
}
public void setBalance(double bal)
{
balance=bal;
}
public double getBalance(){
return balance;
}
}
class UseAccount
{
public static void main(String args[])
{
Scanner sc=new Scanner(System.in);
System.out.println("Enter the number of accounts: ");
int numberOfAccount = sc.nextInt();
Account a[] = new Account[numberOfAccount]; //array of references
for (int i = 0 ; i < numberOfAccount ; i++) {
a[i] = new Account();//objects
}
for(int i=0;i< numberOfAccount; i++)
{
System.out.println("Enter account number");
int an=sc.nextInt();
System.out.println("Enter balance ");
double bal= sc.nextDouble();
a[i].setAccountno(an);
a[i].setBalance(bal);
}
for(int i=0;i<numberOfAccount;i++)
{
int x = a[i].getAccountno();
double y = a[i].getBalance();
System.out.println(x);
System.out.println(y);
sc.close();
}
}
}