Skip to content

Commit de41e70

Browse files
committed
add to readme
1 parent 365b965 commit de41e70

2 files changed

Lines changed: 4 additions & 9 deletions

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
# cakes
1+
# Introduction to Java
2+
3+
This your copy of the code for the java-course. The course itself is located in the issues of this repository.

custom_order.java

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,6 @@ public static void main(String[] args) {
8080
// TEST CODE
8181

8282
// STEP 10 DISPLAY COST AND SALES TAX
83-
84-
System.out.printf("The cost of your order is: $%.2f\n", cost);
85-
tax = cost * TAX_RATE;
86-
System.out.printf("The tax is: $%.2f\n", tax);
87-
System.out.printf("The total due is: $%.2f\n",(tax + cost));
88-
89-
90-
83+
9184
}
9285
}

0 commit comments

Comments
 (0)