-
Notifications
You must be signed in to change notification settings - Fork 26
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
base: Zhulenkov_Nikita
Are you sure you want to change the base?
Add files via upload #55
Conversation
cout << "Oct = " << oct << n << endl; | ||
cout << "Hex = " << hex << n << endl; | ||
return 0; | ||
} |
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
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 | ||
|
There was a problem hiding this comment.
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]; // ����������� �� ��������� |
There was a problem hiding this comment.
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; // ����������� �� ��������� | ||
} | ||
} |
There was a problem hiding this comment.
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; // ������� �������������� |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
У Вас двумерный массив, а не одномерный, не всю память освободили)
No description provided.