Question

In: Computer Science

• Write a C++ program to find the largest umber, smallest number and sum of all...

• Write a C++ program to find the largest umber, smallest number and sum of all the element of a given array of 20 integers

• Note

− Declare array to 20 numbers

− Input values for 20 array elements

− Find largest number

− Find smallest number

− Find sum of all numbers

• Display the results

Solutions

Expert Solution

C++ program:

#include <iostream>
using namespace std;

int main()
{
int i, N,s;
float a[20];

N=20;
for(i = 0; i < N; ++i)
{
cout << "Enter Number " << i + 1 << " : ";
cin >> a[i];
}

//Largest number
for(i = 1;i < N; ++i)
{

if(a[0] < a[i])
a[0] = a[i];
}
cout << "Largest Number = " << a[0];
cout<<"\n";
  
//smallest number
for(i = 1;i < N; ++i)
{

if(a[0] > a[i])
a[0] = a[i];
}
cout << "Smallest Number = " << a[0];
cout<<"\n";
  
//sum of all the elements
for(i = 1; i < N; ++i)
{
s += a[i];
}
cout << "Sum of all numbers= " << s;

return 0;
}

Output:


Related Solutions

Write a C++ program to find K largest elements in a given array of integers. For...
Write a C++ program to find K largest elements in a given array of integers. For eeample, if K is 3, then your program should ouput the largest 3 numbers in teh array. Your program is not supposed to use any additional array.
JAVA Write a java program that will sum all positive number. Prompt the user to enter...
JAVA Write a java program that will sum all positive number. Prompt the user to enter numbers and add all positive numbers. The program will not add negative numbers and the program will stop when you enter ‘0’.   Enter a number> 25 Enter a number> 9 Enter a number> 5 Enter a number> -3 Enter a number> 0 Sum = 39
-Write a program in C++: • to find the sum of the series 1! /1+2! /2+3!...
-Write a program in C++: • to find the sum of the series 1! /1+2! /2+3! /3+4! /4+5! /5 using the function1, • to convert decimal number to binary number using the function2, • to check whether a number is a prime number or not using the function3, • to check whether two given strings are an anagram using the function4. important must do in (Multi-Filing) of c++
Write a Java program to find the sum of all integers between 200 to 250 which...
Write a Java program to find the sum of all integers between 200 to 250 which are divisible by 7. Sample Output: Numbers between 200 and 250, divisible by 7: 203 210 217 224 231 238 245 The sum is: 1568
Write a c program that prints the final sum of all values from 1 to n...
Write a c program that prints the final sum of all values from 1 to n only when n is a positive value. The program is to print "Poor!" when the final sum is less than 70, print "Good" when the sum is between 71 and 90. or "Great!" when the sum is 91 or better.
Write a C++ program to find the number of pairs of integers in a given array...
Write a C++ program to find the number of pairs of integers in a given array of integers whose sum is equal to a specified number.
IN C++ Write a program to find the number of comparisons using binarySearch and the sequential...
IN C++ Write a program to find the number of comparisons using binarySearch and the sequential search algorithm as follows: Suppose list is an array of 1000 elements. 3 Search list for some items as follows: a. Use the binary search algorithm to search the list. (You may need to modify the algorithm given in this chapter to count the number of comparisons.) b. Use the binary search algorithm to search the list, switching to a sequentialsearch when the size...
IN C++ Write a program to find the number of comparisons using binarySearch and the sequential...
IN C++ Write a program to find the number of comparisons using binarySearch and the sequential search algorithm as follows: Suppose list is an array of 1000 elements. 2 Use any sorting algorithm to sort list.
In C++ Write a program to find the number of comparisons using binarySearch and the sequential...
In C++ Write a program to find the number of comparisons using binarySearch and the sequential search algorithm as follows: Suppose list is an array of 1000 elements. 5.1 Use a random number generator to fill list.
Write a Python program to find the smallest positive integer that is a perfect square and...
Write a Python program to find the smallest positive integer that is a perfect square and it contains exactly three different digits.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT