7 lines
75 B
Plaintext
7 lines
75 B
Plaintext
X := 10;
|
|
Y := 3;
|
|
Z := 0;
|
|
while X > 0 do
|
|
Z := Z + Y;
|
|
X := X - 1
|
|
endwhile |