Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

Print two space-separated long integers denoting the respective minimum and maximum values

0 votes
asked Nov 20, 2019 by anonymous

Given five positive integers, find the minimum and maximum values that can be calculated by summing exactly four of the five integers. Then print the respective minimum and maximum values as a single line of two space-separated long integers.

For example, arr[1 2 3 4 5]. Our minimum sum is 1+3+5+7=16 and our maximum sum is 3+5+7+9=24 . We would print

16 24

Function Description

Complete the miniMaxSum function in the editor below. It should print two space-separated integers on one line: the minimum sum and the maximum sum of  of  elements.

miniMaxSum has the following parameter(s):

  • arr: an array of  integers

Input Format

A single line of five space-separated integers.

Constraints

Output Format

Print two space-separated long integers denoting the respective minimum and maximum values that can be calculated by summing exactly four of the five integers. (The output can be greater than a 32 bit integer.)

Sample Input

1 2 3 4 5

Sample Output

10 14

1 Answer

0 votes
answered Nov 28, 2019 by Sarthak Patel (150 points)
#include<iostream>
#include<algorithm>

using namespace std;

int minSum(int arr[5]){

return arr[0]+arr[1]+arr[2]+arr[3];

}

int maxSum(int arr[5]){

return arr[1]+arr[2]+arr[3]+arr[4];

}

int main(){

//replace values in array as desired

int array[5] = {5, 4, 1, 3, 2};

sort(array, array + 5);

int min_sum = minSum(array);
cout<< min_sum << " ";

int max_sum = maxSum(array);
cout<< max_sum;

return 0;

}
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...