также и называется игровой автомат для ловли игрушек определенного названия нет
28,25 байт
0,0276 кбайт
0,0000269 мегабайт<span>
0,221 килобита</span>
<span>0,000216</span> мегабита
В остальное там 200 символов.
<span>PYTHON
1)
print("Hello world!\n"*100)
2)
</span><span>a = int(input())
q = int(input())
w = int(input())
e = int(input())
r = int(input())
t = int(input())
y = int(input())
u = int(input())
s = int(input())
b = int(input())
suma = (a+q+w+e+r+t+y+u+s+b)/<span>10
</span>print("Середне арифметичне = ",suma)</span>
<span>S:=0; // 0
For i:=1 to 3 do
begin
S:=S + 2;
S:=S*i;
end; // 1- S=0+2; S=2*1; S=2;
2- S=2+2; S=2*2; S=8;
3- S=8+2; S=10*3; S=30;
Ответ: S=30
</span>
Var x,k:integer;
<span>begin </span>
<span>k:=0; </span>
<span>repeat </span>
<span>writeln('Введите число'); </span>
<span>read(x); </span>
<span>if (x>0) and (x<=256) then k:=k+1; </span>
<span>until x=0; </span>
<span>writeln('Количество положительных чисел <=256 = ',k); </span>
<span>end.</span>