6 lines
57 B
Text
6 lines
57 B
Text
mata
|
|
n=0
|
|
do {
|
|
printf("%f\n",++n)
|
|
} while (mod(n,6))
|
|
end
|