Здесь Вы можете найти ответы на многие вопросы или задать свой вопрос!
v=331+0,6*(-35)=310 м/c
v=331+0,6*30=349 м/c
1 input a
2 input b
3 input c
20 if a> b then goto 60
30 if b> c then goto 110
40 max=с
50 goto 120
60 if a> c then goto 90
70 max=с
80 goto 120
90 max=a
100 goto 120
110 max=b
120 if a< b then goto 160
130 if b< c then goto 210
140 min=с
150 goto 220
160 if a< c then goto 190
170 min=с
180 goto 220
190 min=a
200 goto 220
210 min=b
220 print min*max
7fe=14*16^0+15*16^1+7*16^2=2046 в 10 с/с 2046/2=1023 байт
e=14
f=15
ответ 2
var s,i,n,a: integer;
begin
read(a,n);
s: =1;
for i : = 1 to n do
s: =s*a;
writeln('a в степени n = ',s);
s: =s*i;
writeln(s);
s: =0;
for i: = 1 to n do
read(a);
s: = s + a;
end;
writeln('среднее арифметическое = ',s/n)
end.
Популярные вопросы