Вопрос задан 26.02.2019 в 01:08. Предмет Информатика. Спрашивает Гапша Дарья.

Cоставьте программу для вычисления T=R/Q+1+SR-наименьший элемент массива;Q-сумма нечетных элементов

массива;S-количество элементов,лежащих в интервале(А,В)(А,В ввести).Полученной значение элементов R,Q,S,T ввыести на печать.
0 0
Перейти к ответам

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

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

 Dim A() As Integer


        Randomize()
        Dim k As Integer
        Dim i As Integer
        i = Rnd() * 100 + 1
        ReDim A(i)
        For k = 0 To i
            A(k) = Rnd() * -1000 + 500
        Next






        Dim intA, intB As Integer
        intA = InputBox("Введите начало интервала")
        intB = InputBox("Введите конец интервала")
        Dim R, Q, S As Integer
        R = 0
        For i = 1 To UBound(A)
            If A(i) < A(R) Then R = i
            If A(i) Mod 2 <> 0 Then Q = Q + A(i)
'  c2fbefeeebede8eb3a20caf3eff0e8ffedeee220c42ec52e2028632920442d6d6f6e3535
            If A(i) > intA And A(i) < intB Then S = S + 1
        Next


        MsgBox("T=R/Q+1+S = " & A(R) / Q + 1 + S)
0 0
Отвечает нейросеть ChatGpt. Будьте внимательны, ответы нейросети могут содержать ошибочные или выдуманные данные.

Program for Calculating T, R, Q, and S

Here is a program written in Python that calculates the values of T, R, Q, and S based on the given requirements:

```python def calculate_values(arr, A, B): # Calculate the smallest element in the array R = min(arr)

# Calculate the sum of odd elements in the array Q = sum([num for num in arr if num % 2 != 0])

# Calculate the count of elements within the range (A, B) S = len([num for num in arr if A < num < B])

# Calculate the value of T using the formula T = R / Q + 1 * S * R T = R / (Q + 1) * S * R

return T, R, Q, S

# Example usage array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] A = 3 B = 8

T, R, Q, S = calculate_values(array, A, B)

print("T =", T) print("R =", R) print("Q =", Q) print("S =", S) ```

This program defines a function `calculate_values` that takes an array, A, and B as input. It calculates the smallest element in the array (R), the sum of odd elements in the array (Q), the count of elements within the range (A, B) (S), and finally, it calculates the value of T using the formula T = R / Q + 1 * S * R. The function returns the values of T, R, Q, and S.

In the example usage, an array `[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]` is used, and A is set to 3 and B is set to 8. The program then calls the `calculate_values` function with these inputs and prints the resulting values of T, R, Q, and S.

Please note that this program is written in Python. If you need the program in a different programming language, please let me know.

0 0

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

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

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