Question
please write this code in c++

// a: an array of ints. size is how many ints in array 7/ Return the largest value in the list. 7/ This value may be unique,
0 0
Add a comment Improve this question Transcribed image text
Answer #1

#include <iostream>

using namespace std;

--------------------------------------------------------------------------------------------------------------------

int largestValue(int *a, int size){

int max = a[0];

for(int i=1 ; i<size; ++i){

if(a[i] > max)

max = a[i];

}

return max;

}

--------------------------------------------------------------------------------------------------------------------

int smallestValue(int *a, int size){

int min = a[0];

for(int i=1 ; i<size; ++i){

if(a[i] < min)

min = a[i];

}

return min;

}

--------------------------------------------------------------------------------------------------------------------

int sum(int *a, int size){

int ans = 0;

for(int i=0 ; i<size; ++i){

ans = ans + a[i];

}

return ans;

}

--------------------------------------------------------------------------------------------------------------------

int main() {

int a[] = {3,4,12,67,0};

cout << largestValue(a,5)<<endl;

cout << smallestValue(a,5)<<endl;

cout << sum(a,5)<<endl;

}

------------------------------------------------------------------------

SEE Output as methods were tested

Files : main.cpp saved https://CreativeChartreuse Opens main.cpp 18 19 return min; } clang version 7.0.0-3-ubun al) > clang++mins int largestValue(int *a, int size) { int max = a [0]; for(int i=1 ; i<size; ++i) { if(a[i] > max) max = a[i]; return max

--------------------------------------------------------------------------------------------------------------------

PLEASE COMMENT if there is any concern.

==============================

Add a comment
Know the answer?
Add Answer to:
please write this code in c++ // a: an array of ints. size is how many...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • (C++) compute and return the sum of the ints contained in the Array table using RECURSION....

    (C++) compute and return the sum of the ints contained in the Array table using RECURSION. Start with the following function. int sum(node * head[]);    // // //This is the provided header file. //arr.h #include #include #include const int SIZE = 5;   //size of the array of head pointers struct node { int data; node * next; }; /* These functions are already written and can be called to test out your code */ void build(node * head[]); //supplied...

  • Write a C code to perform the following tasks: In main: Define an array of SIZE...

    Write a C code to perform the following tasks: In main: Define an array of SIZE = 7 and initialize them with 3, 5, 7, 9, 11, 13, 15 Call function sum with the array and size as parameters Print each element of the array Print the sum In function sum. Use for-loop to calculate sum

  • Consider a non-empty int array ints. A contiguous subarray ints[ start .. start + len -1...

    Consider a non-empty int array ints. A contiguous subarray ints[ start .. start + len -1 ] (with starting index start and length len) is called a flat if all elements of that subarray are equal. Furthermore, such a subarray is called a plateau if it is flat and each of the elements ints[start -1] and ints[start + len] that immediately proceed/succeed the subarray are either nonexistent (i.e., out of array’s index range) or are strictly smaller than the elements...

  • Consider the following code: *How many elements in the array A are * also in the...

    Consider the following code: *How many elements in the array A are * also in the array B? Assume B is sorted. */ 01: int overlap (int* A, int* B, int N) 02:{ 03: int count = 0; 04: for (int i = 0; i < N; ++i) 05: 06: int x A [i 07: 08 int pos lower_bound (B, B+N, x) - B; if (pos N && B [pos] 09: 10: 11: 12: == x ) { +count; 13:...

  • c++, need help thank you Given an array of ints, return the sum of all elements...

    c++, need help thank you Given an array of ints, return the sum of all elements from the array that come before the first element that equals number 4 in the array. The array will contain at least one 4. Function prototype: int pre4int array ( ], int size); Hint: to find the array size, use: int size = sizeof(array) / sizeof( array[0]); Sample runs: int array1[ ] = {1, 2, 4, 1); pre4(array1, 4); // returns 3 int array2...

  • Array with Iterator. Java style Implement an array data structure as a class JstyArray<E> to support...

    Array with Iterator. Java style Implement an array data structure as a class JstyArray<E> to support the Iterable interface such that the following code works: JstyArray<Integer> data; data = new JstyArray<Integer>(10); for (int i = 0; i < 10; ++i) { data.set(i, new Integer(i) ); } int sum = 0; for ( int v : data ) { if (v == null) continue; // empty cell sum += v; } The iterator provided by this class follows the behaviour of...

  • 1. Write a static method named mode that takes an array of integers as a parameter...

    1. Write a static method named mode that takes an array of integers as a parameter and that returns the value that occurs most frequently in the array. Assume that the integers in the array appear in sorted order. For example, if a variable called list stores the following values: ist -3, 1, 4, 4, 4, 6, 7,8, 8, 8, 8, 9, 11, 11, 11, 12, 14, int 141i Then the call of mode (li array, appearing four times. st,...

  • package exampleassignment; import java.util.Arrays; import stdlib.*; public class assignment {        /**        * valRange returns...

    package exampleassignment; import java.util.Arrays; import stdlib.*; public class assignment {        /**        * valRange returns the difference between the maximum and minimum values in the        * array; Max-Min. Precondition: the array is nonempty. Your solution must go        * through the array at most once.        *        * Here are some examples (using "==" informally):        *        * <pre>        *    0 == valRange (new double[] { -7 })        *    10 == valRange (new double[]...

  • c++ please. Write a recursive method that takes the following parameters: * a sorted array of...

    c++ please. Write a recursive method that takes the following parameters: * a sorted array of ints * an int representing the size of the array * an int representing a value to be searched for Your function should return a bool. If the element is in the array, return true. Otherwise, return false. Your function should never produce memory access errors, regardless of the size of the array.

  • Consider the following code segment: int main() cons int SIZE -20; int values [SIZE] - f0,...

    Consider the following code segment: int main() cons int SIZE -20; int values [SIZE] - f0, 23, 34, -7, 110, 42,-350, 424, 25, 99, 10, 05, 50, -5, 1, 200, -350, 437, 25, 147}; // your code goes here Write a complete program to display the values from each of the following four steps All displays must be done in main. Use separate functions for each step below, passing the array to each function. 1.1) Provide the sum of the...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT