borisov
?>

Предсказать, что напечает программа на паскале(c объяснением var x : word; a : array[0..1] of byte absolute x; begin x : = 819; writeln( a[0], ' ', a[1] ); readln; end;

Информатика

Ответы

slitex

не понятно что вообще эта программа выводит, потому что ее паскаль просто даже не запускает .  

sttig
  present simple общие does he go to school every day? does she really like singing? is it cold today? do cats catch mice? has he got a real friend? альтернативные does she go to shool every day or once a month? do cats catch mice or dogs? is the earth round or square? is russia bigger or smaller than other countries? does he like skiing or skating? специальные what does he do at school every day? who likes dancing? when does winter come? where does she live? what does she always wait for? present progressive общие is it raining now? is the sun shining at the moment? is he writing his composition now? are they swimming in the pool at the moment? are you doing your homework? альтернативные are you doing your homework or watching tv now? is it raining or snowing now? are they flying to italy or to canada now? is he reading a book or a web-page? is she clever or not? специальные what is she looking forward for? where are they going to go next summer? when is he leaving for france? whom is she writing an e-mail? what are they doing now?
gorodof4292
//PascalABC.NET (версия 3.1, сборка 1210 от 29.03.2016)
const
  m = 10;

var
  t: array[1..m] of integer;
  i, n, nm, sm: integer;

begin
  //Заполняем массив сл.числами и подсчитываем
  //количество элементов и среднее арифметическое
  //согласно условию задачи
  for i := 1 to m do
  begin
    t[i] := random(-20, 20);write(t[i]:4);
    if (i > 1) and (i <= m) then
      if t[i] > t[i - 1] then n := n + 1
      else if t[i] < t[i - 1] then begin
        sm := sm + t[i];nm := nm + 1;
      end;
  end;
  writeln;
  writeln('число элементов больших предыдущего = ', n);
  writeln('ср. арифметическое элементов меньших предыдущего = ', sm / nm);  
 
end.

Тестовое решение:
    6  13  19   8 -19 -11 -20 -15 -19 -13
число элементов, больших предыдущего = 5
среднее арифметическое элементов, меньших предыдущего = -12.5

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

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

Предсказать, что напечает программа на паскале(c объяснением var x : word; a : array[0..1] of byte absolute x; begin x : = 819; writeln( a[0], ' ', a[1] ); readln; end;
Ваше имя (никнейм)*
Email*
Комментарий*

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

extremhunter
smalltalkcoffee5
Ионов202
Ольга1520
Plotnikovangav
missbuhgalter2013
oleonov
Анастасия Елена
dailyan539
nailya-abdulova25
grishin
mail66
JisesLove19955
nurtilekisakov
Kochereva-Sergei