fortran编程中,有关可变大小数组的问题。
小弟按照彭国伦版的《fortran95程序设计》第147页,原样编写了一段程序,程序如下:programex0716implicitnoneinteger::studen...
小弟按照彭国伦版的《fortran 95 程序设计》第147页,原样编写了一段程序,程序如下:
program ex0716
implicit none
integer::students
integer,allocatable::a(:)
integer::i
write(*,*)"how many students:"
read(*,*)students
allocatable (a(students))
do i=1,students
write(*,"('number',i3)")i
read(*,*)a(i)
end do
stop
end
结果运行后出现这样的结果:
Error: Syntax error, found '(' when expecting one of: :: <IDENTIFIER>
allocatable(a(size),stat=error)
求各位大虾给小弟解释一下,为什么会出现这样的错误,谢谢! 展开
program ex0716
implicit none
integer::students
integer,allocatable::a(:)
integer::i
write(*,*)"how many students:"
read(*,*)students
allocatable (a(students))
do i=1,students
write(*,"('number',i3)")i
read(*,*)a(i)
end do
stop
end
结果运行后出现这样的结果:
Error: Syntax error, found '(' when expecting one of: :: <IDENTIFIER>
allocatable(a(size),stat=error)
求各位大虾给小弟解释一下,为什么会出现这样的错误,谢谢! 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励30(财富值+成长值)
1个回答
展开全部
write(*,*)"how many students:"
read(*,*)students
allocatable (a(students))
在这一句中的allocatable (a(students))改成 allocate(a(students))
read(*,*)students
allocatable (a(students))
在这一句中的allocatable (a(students))改成 allocate(a(students))
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
TableDI
2024-07-18 广告
2024-07-18 广告
当我们谈到Python与Excel的拆分时,通常指的是使用Python的库来读取Excel文件中的数据,然后根据某种逻辑(如按行、按列、按特定值等)将数据拆分成多个部分或输出到新的Excel文件中。上海悉息信息科技有限公司在处理这类任务时,...
点击进入详情页
本回答由TableDI提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询