Вопрос задан 16.06.2023 в 11:26. Предмет Информатика. Спрашивает Жеменей Ырысбек.

(Передача масивів функціям с++) В кожній задачі реалізувати: 1. Функцію SetArray, що заповнює

масив випадковими числами. 2. Функцію, що реалізує умову задачі. 3. Функцію PrintArray, що виводить на екран елементи масиву. 4. Всі масиви створюються динамічно а розмір вводиться користувачем з клавіатури. Дано масив A розміру N і цілі числа K і L ( 1 ≤ K < L ≤ N ). Переставити в зворотному порядку елементи масиву, розташовані між елементами з номерами K і L, включаючи ці елементи.
0 0
Перейти к ответам

Ответы на вопрос

Внимание! Ответы на вопросы дают живые люди. Они могут содержать ошибочную информацию, заблуждения, а также ответы могут быть сгенерированы нейросетями. Будьте внимательны. Если вы уверены, что ответ неверный, нажмите кнопку "Пожаловаться" под ответом.
Отвечает Зятенков Богдан.

Відповідь:

#include <iostream>

#include <cstdlib>

#include <time.h>

using namespace std;

void SetArray(int *A,int N){

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

 A[i] = rand() % 10 + 1;

}

}

void PrintArray(int *A,int N){

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

 cout << A[i] << " ";

}

}

void expression(int *A,int N,int k,int l){

for(int k; k <= l; k++, l--){

 swap(A[k], A[l]);

}

}

int main(){

       srand(time(NULL));

setlocale(LC_ALL , "Rus");

int N,k,l;

cout << "Введите размер массива: ";

cin >> N;

int *A = new int[N];

 SetArray(A,N);

 PrintArray(A,N);

 

 cout << "\nВведите k: ";

 cin >> k;

 cout << "Введите l: ";

 cin >> l;

 

 expression(A,N,k,l);

 PrintArray(A,N);

delete[] A;            

return 0;

}

0 0
Отвечает нейросеть ChatGpt. Будьте внимательны, ответы нейросети могут содержать ошибочные или выдуманные данные.

To solve this problem, you need to implement four functions: SetArray, which fills an array with random numbers; a function that implements the condition of the problem; PrintArray, which displays the elements of the array; and a function to reverse the elements between the indices K and L, inclusive.

Here's an example implementation in C++:

```cpp #include #include #include

void SetArray(int* arr, int size) { srand(time(NULL)); for (int i = 0; i < size; i++) { arr[i] = rand() % 100; // Generate random numbers between 0 and 99 } }

void ReverseElements(int* arr, int size, int k, int l) { int start = k - 1; // Adjust indices to 0-based indexing int end = l - 1; while (start < end) { int temp = arr[start]; arr[start] = arr[end]; arr[end] = temp; start++; end--; } }

void PrintArray(int* arr, int size) { for (int i = 0; i < size; i++) { std::cout << arr[i] << " "; } std::cout << std::endl; }

int main() { int N, K, L; std::cout << "Enter the size of the array: "; std::cin >> N; int* A = new int[N];

std::cout << "Enter the values of K and L: "; std::cin >> K >> L;

SetArray(A, N); std::cout << "Original array: "; PrintArray(A, N);

ReverseElements(A, N, K, L); std::cout << "Reversed array: "; PrintArray(A, N);

delete[] A; return 0; } ```

In this example, the `SetArray` function fills the array `A` with random numbers. The `ReverseElements` function reverses the elements between indices `K` and `L` (inclusive). The `PrintArray` function displays the elements of the array. The user is prompted to enter the size of the array (`N`) and the values of `K` and `L`. The program then generates the random array, displays it, reverses the specified elements, and displays the reversed array.

Please note that this is just one possible implementation, and there may be other ways to solve the problem.

0 0

Топ вопросов за вчера в категории Информатика

Последние заданные вопросы в категории Информатика

Задать вопрос