Different symbol for newline

master
sgoudham 4 years ago
parent 7595af3049
commit 373c28e1b5
No known key found for this signature in database
GPG Key ID: EF51A29A50FB754C

@ -1,7 +1,7 @@
package src; package src;
public class AnimalHelper { public class AnimalHelper {
private final Animal[] animals; private final Animal[] animals;
private double averagePrice; private double averagePrice;
@ -14,7 +14,7 @@ public class AnimalHelper {
int total = 0; int total = 0;
double sum = 0.0; double sum = 0.0;
for (Animal animal : animals) { for (Animal animal : animals) {
StringBuilder stringBuilder = new StringBuilder(); StringBuilder stringBuilder = new StringBuilder();
@ -33,6 +33,6 @@ public class AnimalHelper {
public void displayAveragePrice() { public void displayAveragePrice() {
/* Display the average price of all the animals */ /* Display the average price of all the animals */
System.out.printf("\nThe Average Price For All The Animals Are: £%.2f", averagePrice); System.out.printf("%nThe Average Price For All The Animals Are: £%.2f", averagePrice);
} }
} }

Loading…
Cancel
Save