From 390f278fc5be5c9cc279e548dd9d3a93a350867e Mon Sep 17 00:00:00 2001 From: saurab2019 <56071783+saurab2019@users.noreply.github.com> Date: Thu, 1 Oct 2020 01:01:46 +0530 Subject: [PATCH] Update Exercise_05_01.java --- Exercise_05/Exercise_05_01/Exercise_05_01.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Exercise_05/Exercise_05_01/Exercise_05_01.java b/Exercise_05/Exercise_05_01/Exercise_05_01.java index 6dfd37c8..bec93abc 100755 --- a/Exercise_05/Exercise_05_01/Exercise_05_01.java +++ b/Exercise_05/Exercise_05_01/Exercise_05_01.java @@ -41,9 +41,9 @@ public static void main(String[] args) { // Display results System.out.println( - "The number of positive is " + positives + - "\nThe number of negatives is " + negatives + - "\nThe total is total " + total + + "The number of positive numbers are " + positives + + "\nThe number of negative numbers are " + negatives + + "\nThe total is " + total + "\nThe average is " + average); } -} \ No newline at end of file +}