
Все 4 задания,бужу очень благодарен 1)заполнить одномерный массив 10-ю случайными числами из
диапазона от 30 до 40 2) вывести массив на печать в строку. 3)найти и вывести сумму минимального и максимального элементов массива. 4)вывести на печать в строку элементы массива,меньшие 35

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




Task 1: Fill a one-dimensional array with 10 random numbers from 30 to 40
To fill a one-dimensional array with 10 random numbers from 30 to 40, you can use the following Bash script:
```bash #!/bin/bash
# Declare an array declare -a arr
# Fill the array with 10 random numbers from 30 to 40 for ((i=0; i<10; i++)); do arr[i]=$((RANDOM % 11 + 30)) done ```
Task 2: Print the array in a single line
To print the array in a single line, you can use the following Bash script:
```bash # Print the array in a single line echo "${arr[@]}" ``` This will output the array in a single line.
Task 3: Find and print the sum of the minimum and maximum elements of the array
To find and print the sum of the minimum and maximum elements of the array, you can use the following Bash script:
```bash # Find the minimum and maximum elements of the array min=${arr[0]} max=${arr[0]} for num in "${arr[@]}"; do ((num < min)) && min=$num ((num > max)) && max=$num done
# Print the sum of the minimum and maximum elements echo "Sum of min and max: $(($min + $max))" ``` This will calculate and print the sum of the minimum and maximum elements of the array.
Task 4: Print the elements of the array that are less than 35 in a single line
To print the elements of the array that are less than 35 in a single line, you can use the following Bash script:
```bash # Print the elements of the array that are less than 35 for num in "${arr[@]}"; do ((num < 35)) && echo -n "$num " done ``` This will output the elements of the array that are less than 35 in a single line.


Топ вопросов за вчера в категории Информатика
Последние заданные вопросы в категории Информатика
-
Математика
-
Литература
-
Алгебра
-
Русский язык
-
Геометрия
-
Английский язык
-
Химия
-
Физика
-
Биология
-
Другие предметы
-
История
-
Обществознание
-
Окружающий мир
-
География
-
Українська мова
-
Информатика
-
Українська література
-
Қазақ тiлi
-
Экономика
-
Музыка
-
Право
-
Беларуская мова
-
Французский язык
-
Немецкий язык
-
МХК
-
ОБЖ
-
Психология
-
Физкультура и спорт
-
Астрономия
-
Кыргыз тили
-
Оʻzbek tili