Advertisement
Alex_Fomin

Untitled

Jan 12th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.29 KB | None | 0 0
  1. begin
  2.   var x := ArrRandom(30, -50, 50);WriteLn('Массив X:', newLine, x);
  3.   var y := ArrRandom(15, -25, 75);WriteLn('Массив Y:', newLine, y);
  4.   var z := ArrRandom(20, -75, 50);WriteLn('Массив Z:', newLine, z);
  5.   WriteLn('Результат: ', (x.Max + y.Max + z.Max) / 3);
  6. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement