- 1
Whu can help me with prog language C++
Block scheme
2 odpowiedzi
0
#include <iostream>
using namespace std;
void main()
{
int mas[10];//Массив на 10 чисел
int sum = 0;//Сумма всех элементов массива
int moreThanAverageSum = 0;//переменная для суммы чисел которые больше среднего арифметического
cout << "Zadaite isxodnie elementi massiva \n" ;
for (int i = 0; i < 10; i++)//В цикле задаем значения элементов массива
{
cin >> mas[i];
}
/*Выводим значения исходного массива на экран*/
for (int i = 0; i < 10; i++)
{
cout << mas[i] << " ";
}
cout << "\n";
for (int i = 0; i < 10; i++)//Находим сумму для того чтобы посчитать потом среднее арифметическое
{
sum += mas[i];
}
cout << "Srednee arifmeticheskoe ravno = "<< sum/10 <<"\n";
for (int i = 0; i < 10; i++)//В цикле задаем значения элементов массива
{
if (mas[i] > sum/10)//проверка условия на то что число больше среднего арифметического 10 чисел массива
{
moreThanAverageSum += mas[i];
}
}
cout
0
Kutman Mederbekov
Look, your code is too big, it doesn't fit in, and it gets truncated due to character limits.
Solution is to save a copy of that code in SoloLearn, then share a link to the saved code within your original thread Description above. That way code will not be truncated, people can view and analyse the complete code, and suggest you something.
Follow the below guide to sharing links 👇
https://www.sololearn.com/post/75089/?ref=app