From 74ef5bc501adae9a1d9eaf17823a6cea571c1440 Mon Sep 17 00:00:00 2001 From: jatin22-exe <72027234+jatin22-exe@users.noreply.github.com> Date: Wed, 30 Sep 2020 05:14:21 -0700 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ed07a03..bf4a614 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ cout<< s; arr = {3, 5, 2, 4, 1, 2, 3, 1, 3} n=9; string s = count_and_sum(arr,n); -cout<< s; +cout<< s<< endl; // should print "count odd = 6, sum even = 8" ``` @@ -147,7 +147,7 @@ cout<< s; arr = {3, 5, 2, 4, 1, 2, 3, 1, 3} n=9; string s = group_data(arr,n); -cout<< s; +cout<< s<< endl; // should print "3 5 1 3 1 3 2 4 2, average = 2.67" ```