kol-nat26
?>

Tema: tipul de date tablou (array) scopul lucrării: 1. utilizarea tablourilor. 2. prelucrarea algoritmilor de sortare. conţinutul lucrării: 1. de compus un tablou de date cu ajutorul numerelor introduse de la tastatură. 2. de ales una din metodele de sortare. indicaţii metodice: 1. datele iniţiale pot fi numere pozitive, negative sau 0. 2. datele de ieșire se afișează la ecran în limbajul pascal. вариант 1. aranjaţi în ordine crescătoare elementele primei jumătăţi.

Информатика

Ответы

kozak8824

Часть 1

1.

a, b, c, d = int(input()), int(input()), int(input()), int(input())

s = (a + b + c + d)/4

print(s)

2.

x, y = int(input()), int(input())

t = x

x = y

y = t

print(x, y, sep = "\n")

4.

from math import pi

L, D = float(input()), float(input())

R = (L - D) / (2 * pi)

print(R)

5.

from math import pi

R1, R2 = float(input()), float(input())

r = R1**2 - R2**2

S = pi * r

print(S)

6.

x, y = int(input()), int(input())

S = (2*x - y)*(x - y)

print(S)

Часть 2

1.

x, y = float(input()), float(input())

x, y = y, x

print(x, y)

2.

если нужно найти y = x * 5:

x = int(input())

y = x * 5

print(y)

если нужно найти y = x^{2}:

x = int(input())

y = x ** 5

print(y)

3.

x = int(input())

y = 1 - 2*x + 3*x**2 - 4*x**3

print(y)

4.

x1, y1, x2, y2 = float(input()), float(input()), float(input()), float(input())

from math import sqrt

S = sqrt((x1 - x2)**2 + (y1 - y2)**2)

print(S)

spikahome

Ло́гика (др.-греч. λογική — «наука о правильном мышлении к рассуждению» от др.-греч. λόγος — «логос», «рассуждение», «мысль», «разум», «смысл») — раздел философии, нормативная наука о формах, методах и законах интеллектуальной познавательной деятельности, формализуемых на логическом языке.

Электронная таблица (англ. spreadsheet)— компьютерная программа, позволяющая проводить вычисления с данными, представленными в виде двумерных массивов, имитирующих бумажные таблицы. Некоторые программы организуют данные в «листы», предлагая, таким образом, третье измерение.

1101*101=1000001

Объяснение:

Ответить на вопрос

Поделитесь своими знаниями, ответьте на вопрос:

Tema: tipul de date tablou (array) scopul lucrării: 1. utilizarea tablourilor. 2. prelucrarea algoritmilor de sortare. conţinutul lucrării: 1. de compus un tablou de date cu ajutorul numerelor introduse de la tastatură. 2. de ales una din metodele de sortare. indicaţii metodice: 1. datele iniţiale pot fi numere pozitive, negative sau 0. 2. datele de ieșire se afișează la ecran în limbajul pascal. вариант 1. aranjaţi în ordine crescătoare elementele primei jumătăţi.
Ваше имя (никнейм)*
Email*
Комментарий*