Skip to content

Commit

Permalink
new file: Java/BudgetAndBilling.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Ray nieva authored and Ray nieva committed Jun 24, 2017
1 parent 74f4365 commit f8dff57
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Java/BudgetAndBilling.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import java.util.*;
import java.lang.Math;
import java.util.Scanner;

class JavaApplication {
private static Scanner input = new Scanner(System.in);

public static void main(String[] args) {
// This program is intended to be used to calculate my weekly budget based on income that week and projected expenses that week.
System.out.println("Calculating Weekly/ Budget");

// This is usually weekly (net) income but can be another period like bi-weekly or monthly
System.out.println("Get Income for week/period");
double income1;

income1 = input.nextDouble();

// At this point start inputting billing items. These are essentially billing items for the current week or period.
// The question is at this point what direction this program will go? Will there be permanently assigned billing items or billing items adhoc defined each week. Can Flowgorithm define a true OO approach?
}
}

0 comments on commit f8dff57

Please sign in to comment.