Question: Please write in C++ Given a list of random numbers, compute the sum of these numbers. You may not use a for-loop to solve this

Please write in C++

Given a list of random numbers, compute the sum of these numbers. You may not use a for-loop to solve this problem.

Starter Code:

#include  #include  #include  #include  #include  #include  static int getRandomNumber(); template std::ostream& operator<<(std::ostream& out, std::vector list) { out << "["; for (const auto& val : list) { out << val << ", "; } out << "]"; return out; } int main() { std::vector list; std::generate_n(std::back_inserter(list), 20, []() { return getRandomNumber(); }); std::cout << list << " "; // TODO: compute the sum of the numbers in the list and print it out // NOTE: no for loops, use algorithms } static int getRandomNumber() { static std::mt19937 rng{ std::random_device{}() }; static std::uniform_int_distribution rand{ 0, 100 }; return rand(rng); } 

Sample Output:

[10, 1, 93, 97, 30, 60, 97, 65, 55, 99, 52, 5, 76, 85, 25, 49, 49, 37, 22, 8, ] 1015

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!