fortran试用递归函数计算等差数列1 2 3 ... 99 100的值

 我来答
PeriShare
2015-12-19 · 分享PD理论最新研究成果和进展
PeriShare
采纳数:2408 获赞数:36827

向TA提问 私信TA
展开全部
module module1
  real(4):: n
contains
  recursive subroutine sub1(x,y)
    real(4),intent(inout):: x
    if (x < n) then
       x = x + 1
       y=y+x
       call sub1(x,y)
    end if
  end subroutine sub1
end module module1

program main
  use module1
  real(4):: x = 0,y=0
  print *, 'Enter number of repeats'
  n=100
  call sub1(x,y)
  write(*,*)y
end program main

希望能够帮到你!

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式