14 lines
133 B
Plaintext
14 lines
133 B
Plaintext
|
|
i = 0.
|
||
|
|
sum = 0.
|
||
|
|
|
||
|
|
while i < 10 do
|
||
|
|
x = 2.
|
||
|
|
if x == 0 then
|
||
|
|
continue
|
||
|
|
else
|
||
|
|
x += 1
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
cout put:"done"
|