Question
Write the body of addNumbers(int list[], int size) that adds up the first size numbers in the array list and returns the result. If size
Write the body of addNumbers(int list[], int size) that adds up the first size numbers in the array list and returns the result. If size is specified as a negative value, throw an out_of_range exception.
#include
using namespace std;
//Do not modify anything on or above the line below this //YOUR_CODE_BELOW
int addNumbers(int list[], int size) { //YOUR_CODE }
//YOUR_CODE_ABOVE //Do not modify anything on or below the line above this
int main() {
try { int vals[] = {10, 5, 2, 8}; cout << addNumbers(vals, 4) << endl; cout << addNumbers(vals, 2) << endl; cout << addNumbers(vals, -1) << endl; cout << "Should never get here..." << endl; } catch(out_of_range e) { cout << "Oooops" << endl; } }
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