主调函数
n=21
flag=oddeven(n)
if flag=0 then
outputeven
else
output odd
endif
被调函数:
function oddeven(x)
if x mod 2 !=0
return 1
return 0
endfunction