1.
start
natural x, y
citeste x, y
scrie 2 * x + 7 - y
stop
2.
start
natural a, b, c
citeste a, b, c
scrie (a + b + c) / 3
stop
3.
start
natural x, y, min
citeste x, y
min <- x
daca y < min atunci
min <- y
sfarsit_daca
scrie min
stop
4.
start
natural x
daca x % 2 = 0 atunci
scrie "x este un numar par"
altfel
scrie "x este un numar impar"
stop