Skip to content

Instantly share code, notes, and snippets.

View miststudent2011's full-sized avatar

miststudent2011

View GitHub Profile
@miststudent2011
miststudent2011 / SavingsAccount.java
Created August 3, 2016 09:20 — forked from jimmykurian/SavingsAccount.java
A Java program that creates a Bank Account with withdraw, deposit, and intrest functions. And a tester class, that tests the SavingsAccount class.
//SavingsAccount.java - Jimmy Kurian
public class SavingsAccount
{
private double balance;
private double interest;
public SavingsAccount()
{
balance = 0;