fortran 续行错误
small_longitude(pp,ii)=data_longitude(pp)+&(ii-small_grid_number/2)*0.01错误为error#5082...
small_longitude(pp,ii)=data_longitude(pp)+&
(ii-small_grid_number/2)*0.01
错误为error #5082: Syntax error, found '&' when expecting one of: ( <IDENTIFIER> <CHAR_CON_KIND_PARAM> <CHAR_NAM_KIND_PARAM> <CHARACTER_CONSTANT> <INTEGER_CONSTANT> ...
为.for文件 展开
(ii-small_grid_number/2)*0.01
错误为error #5082: Syntax error, found '&' when expecting one of: ( <IDENTIFIER> <CHAR_CON_KIND_PARAM> <CHAR_NAM_KIND_PARAM> <CHARACTER_CONSTANT> <INTEGER_CONSTANT> ...
为.for文件 展开
1个回答
展开全部
用.for文件的时候,系统是按照固定格式来识别代码的。
自由格式换行的时候,不是用&来换行的,而是在另起一行第六格内写入一个字符。上述句子用固定格式就是:
small_longitude(pp,ii)=data_longitude(pp)+
& (ii-small_grid_number/2)*0.01
为了标识清楚,以一个数字代替一个空格就是
123456small_longitude(pp,ii)=data_longitude(pp)+
12345& (ii-small_grid_number/2)*0.01
这样的。
要是想用&来续行应该采用自由格式来编写代码,就是后缀是.f90
自由格式换行的时候,不是用&来换行的,而是在另起一行第六格内写入一个字符。上述句子用固定格式就是:
small_longitude(pp,ii)=data_longitude(pp)+
& (ii-small_grid_number/2)*0.01
为了标识清楚,以一个数字代替一个空格就是
123456small_longitude(pp,ii)=data_longitude(pp)+
12345& (ii-small_grid_number/2)*0.01
这样的。
要是想用&来续行应该采用自由格式来编写代码,就是后缀是.f90
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询