Answered step by step
Verified Expert Solution
Question
1 Approved Answer
use c++ write RECURSIVE function that will print the sum of negative and position numbers //if v is / -43 -41 -40 -39 -37 -37
use c++
write RECURSIVE function that will print the sum of negative and position numbers
//if v is /
-43 -41 -40 -39 -37 -37 -31 -23 -21 -18 -17 -7 -3 41 39 12 12 7 7 5
//then the function would print
//Sum of positive numbers is: -357
//Sum of negitive numbers is: 123
//Input v is an int vector
//Output None void
pos_neg_count(const std::vector & v) ;
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started