Fortran Coder

标题: 彭国论的书里ex0836.f90报错了如何解决 [打印本页]

作者: 芥子纳须弥    时间: 2020-6-6 11:42
标题: 彭国论的书里ex0836.f90报错了如何解决
在IVF+VS环境调试出现下面这样的错误,要怎么解决?
ex0836.f90(31): error #6552: The CALL statement is invoking a function subprogram as a subroutine.   [GET_DISTANCE]

附源代码:
[Fortran] 纯文本查看 复制代码
module constant
  implicit none
  real, parameter :: PI = 3.14159
  real, parameter :: G  = 9.81
end module
module typedef
  implicit none
  type player
    real :: angle
    real :: speed
    real :: distance
  end type
  end module
  
program ex0836
  use typedef
  implicit none
  integer, parameter :: players = 5
  type(player) :: people(players) = (/ player(30.0, 25.0, 0.0),&
                                       player(45.0, 20.0, 0.0),&
            player(35.0, 21.0, 0.0),&
            player(50.0, 27.0, 0.0),&
            player(40.0, 22.0, 0.0) &
          /)
  real, external :: Get_Distance ! 声明Get_Distance是个函数
  integer :: I
  do I=1, players
     call Get_Distance( people(I) )  !/////// 这里出错了
  write(*,"('Player ',I1,' =',F8.2)") I, people(I)%distance
  end do
  stop
end
! 把0~360的角度转换成0~2PI的弧度
real function Angle_TO_Rad( angle )
  use constant
  implicit none
  real angle
  Angle_TO_Rad = angle*pi/180.0
  return
end
! 由角度、切线速度来计算投射距离
subroutine Get_Distance( person )
  use constant
  use typedef
  implicit none
  type(player) :: person
  real rad, Vx, time
  real, external  :: Angle_TO_Rad ! 声明Angle_TO_Rad是个函数
  rad  = Angle_TO_Rad( person%angle )      ! 单位转换
  Vx   = person%speed * cos(rad)           ! 水平方向速度
  time = 2.0 * person%speed * sin(rad) / G ! 在空中飞行时间
  person%distance = Vx * time              ! 距离 = 水平方向速度 * 飞行时间
  return
end

作者: li913    时间: 2020-6-6 15:15
external :: Get_Distance ! 声明Get_Distance是个函数
作者: 芥子纳须弥    时间: 2020-6-6 23:04
li913 发表于 2020-6-6 15:15
external :: Get_Distance ! 声明Get_Distance是个函数

我把您说的这句话删掉就可以了,谢谢。




欢迎光临 Fortran Coder (http://bbs.fcode.cn/) Powered by Discuz! X3.2