Question
Min-Max-Sum(c++)(not allowed string amd arrays) Problem Description Gigi needs to find the smallest and largest values in a given list of numbers. Moreover, she needs
Min-Max-Sum(c++)(not allowed string amd arrays)
Problem Description
Gigi needs to find the smallest and largest values in a given list of numbers. Moreover, she needs to add them.
Input Format
The input begins with an integer N indicating the number of lists in the input. The succeeding lines are N lists. Each list begins with an integer T denoting how many integers n comprises the list. Assume the values in the list are unique.
Output Format
For each list, output the minimum, the maximum, and their sum. Separate the values by a single space. Output for each list must be in its own line.
Constraint
1 <= N <= 100
1 <= T <= 100
-100 <= n <= 100
Sample Input
2 4 5 3 7 8 5 38 79 53 41 36
Sample Output
3 8 11 36 79 115
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