Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Mostrar un arreglo ( array )
var edades : ARRAY [1..5] of integer; i, sum: integer; promedio : real; BEGIN edades[1] := 10; edades[2] := 20; edades[3] := 30; edades[4] := 40; edades[5] := 50; i := 1; sum:= 0; promedio:= 0; while (i <= 5) do begin writeln('Edad ', i, ': ', edades[i]); sum:= sum + edades[i]; i:= i + 1; end; promedio:= sum/i; writeln(sum); writeln('El promedio de las edades es : ',promedio:0:1); end.
run
|
edit
|
history
|
help
0
Calculatrice (case of)
Урок 3, задача 10 (1483). Два момента времени
VINICIUS ELIAS SILVEIRA 600625519
ANDRESSA LIMA NEPOMUCENO 600624624
test19
janja - naloga 2 - 11.7.2013
Find the greatest integers - v1
2
Fast program
test25