info-mosbalkon
?>

Check the meaning of the verbs in bold. thenlook at photos 1-6 and choose the correctverbs.1 the blackbird is feeding / eating its chicks.2 the beaver is digging / building a dam.3 the chameleon is catching / helping aninsect with its tongue.4 the fish is fighting / protecting the otherfish.5 the bear is hunting / hiding the salmon.6 a falcon is playing with / chasing a group ofsmaller birds.​

Информатика

Ответы

mashumi2170
Var
  arr: array[1..27] of integer;
  summ: integer;
begin
  Randomize;
  for var i := 1 to 27 do
  begin
    arr[i] := random(-5, 5);
    summ := summ + arr[i];
  end;
  writeln('Массив: ',arr);
  writeln('Сумма всех элементов массива = ',summ);
  for var i := 1 to 27 do if arr[i] = 0 then arr[i] := summ;
  writeln('Массив: ',arr);
end.

пример работы:
Массив: [5,-1,1,5,4,-2,-3,0,3,5,-3,-4,3,0,-1,-4,5,-2,1,-4,5,2,-4,5,4,-5,-1]
Сумма всех элементов массива = 14
Массив: [5,-1,1,5,4,-2,-3,14,3,5,-3,-4,3,14,-1,-4,5,-2,1,-4,5,2,-4,5,4,-5,-1]

var
  arr: array of integer;
  n,k,m: integer;
begin
  write('Введи n: ');
  readln(n);
  Randomize;
  arr:= new integer[n];
  for var i := 0 to n-1 do arr[i] := random(-5, 5);
  writeln('Массив: ',arr);
  for var i := 0 to n-1 do
  begin
    if arr[i]<0 then inc(k);
    if (i>=1) and (i<=6) then inc(m);
    if (i>=6) and (arr[i]>=0) then arr[i]:=1;
  end;
  writeln('Количество отрицательных элементов массива = ',k);
  writeln('Количество элементов массива в интервале [2..7] = ',m);
  writeln('Массив: ',arr);
end.

Пример работы:
Введи n: 5
Массив: [0,1,-4,1,3]
Количество отрицательных элементов массива = 1
Количество элементов массива в интервале [2..7] = 4
Массив: [0,1,-4,1,3]

Введи n: 15
Массив: [0,1,4,3,-3,5,-4,-1,1,-2,3,1,-4,1,3]
Количество отрицательных элементов массива = 5
Количество элементов массива в интервале [2..7] = 6
Массив: [0,1,4,3,-3,5,-4,-1,1,-2,1,1,-4,1,1]
drappaeva68
Var a: byte; b:integer;
Begin 
writeln('Введите день месяца');
readln(b);
writeln('Введите номер месяца');   
Readln(a);    
          Case a of        
1: writeln(b,' янавря');        
2: writeln(b,' февраля');      
3: writeln(b,' марта ');        
4: writeln(b,' апреля ');      
5: writeln(b,' мая');      
6: writeln(b,' июня ');        
7: writeln(b,' июля');       
8: writeln(b,' августа');     
9: writeln(b,' сентября');     
10: writeln(b,' октября');     
11: writeln(b,' ноября');       
12: writeln(b,' декабря');     
else writeln('Месяца №', a,'нет');   
end;       
end.

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

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

Check the meaning of the verbs in bold. thenlook at photos 1-6 and choose the correctverbs.1 the blackbird is feeding / eating its chicks.2 the beaver is digging / building a dam.3 the chameleon is catching / helping aninsect with its tongue.4 the fish is fighting / protecting the otherfish.5 the bear is hunting / hiding the salmon.6 a falcon is playing with / chasing a group ofsmaller birds.​
Ваше имя (никнейм)*
Email*
Комментарий*

Популярные вопросы в разделе

Paikina Natalya30
asl09777
M10M11M12
kuchin
eoils-info
pivenraisa
dshi67orbru
gelena03
dilanarthur27
oksanakv1950
vifslafes
akakne86
mirsanm26249
ВладимировичСтанислав
info6