Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add files via upload #55

Open
wants to merge 2 commits into
base: Zhulenkov_Nikita
Choose a base branch
from

Conversation

NikitaZhulenkov
Copy link

No description provided.

@NikitaZhulenkov NikitaZhulenkov deleted the Zhulenkov_Nikita branch December 24, 2021 13:03
@NikitaZhulenkov NikitaZhulenkov restored the Zhulenkov_Nikita branch December 24, 2021 13:03
cout << "Oct = " << oct << n << endl;
cout << "Hex = " << hex << n << endl;
return 0;
}
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Только нужно было самому алгоритм написать))

{
cout << "Input age 17 to 30 do: " << endl; // ����������� �� ������� 18.12.2021
cin >> age; // ����������� �� ������� 18.12.2021
while (age < 30 && age > 17) // ����������� �� ������� 18.12.2021
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Должно быть наоборот)

cin >> salary; // ������� �� �������� � task 8.1
cout << "Input premy" << endl; // ������� �� �������� � task 8.1
cin >> premy; // ������� �� �������� � task 8.1

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

У Вас все данные корректно отображаются?)

int sum = 0; // ����������� �� ���������
for (int j = 0; j < col; j++) // ����������� �� ���������
{
sum = arr[i][j]; // ����������� �� ���������
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Плохо смотрели) сумма не считается sum += arr[i][j]; и нет условия для расчета нечетных элементов. В данном случае будут суммироваться все элементы в строке.

y = x / col; // ����������� �� ���������
cout << "������� �������� ������� " << j << "= " << y << endl; // ����������� �� ���������
}
}
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Среднее значение по столбцу у Вас тоже неверно высчитывается. Не знаю куда Вы смотрели, но явно не туда, куда нужно)

		for (int j = 0; j < col; j++) // Просмотрено из интернета
		{
			int x = 0;
			for (int i= 0; i < row; i++) 
				x = x + arr[i][j];
			cout << "Среднее значение столбца " << j+1 << "= " << x/col << endl;
			
		}

}
~Massive() // ������� ��������������
{
delete[] arr; // ������� ��������������
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

У Вас двумерный массив, а не одномерный, не всю память освободили)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants