我将如何定义一个递归函数来找到比 VDM 中的输入数小二的最大幂?
功能如下:
最大:N -> N
到目前为止,我所拥有的是:
最大(n)=
if n=1 then 0
else if n=2 then 1
else ...最大(...)
我将如何定义一个递归函数来找到比 VDM 中的输入数小二的最大幂?
功能如下:
最大:N -> N
到目前为止,我所拥有的是:
最大(n)=
if n=1 then 0
else if n=2 then 1
else ...最大(...)