We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 365b965 commit de41e70Copy full SHA for de41e70
2 files changed
README.md
@@ -1 +1,3 @@
1
-# cakes
+# 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
@@ -80,13 +80,6 @@ public static void main(String[] args) {
80
// TEST CODE
81
82
// 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
91
}
92
0 commit comments