Commit 8f9533ca authored by tahsif.ahmed's avatar tahsif.ahmed

Upload New File

parent a2631de5
public class bankaccount{
int accountNumber;
String name;
double balance;
boolean isSaving;
bankaccount(int accountNumber, String name, double balance, boolean isSaving){
this.accountNumber = accountNumber;
this.name = name;
this.balance = balance;
this.isSaving = isSaving;
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment