我的程序:program examimplicit nonereal vreal sqrtopen(2,file='F:\6.txt',status='replace') v=sqrt(4)write(2,*) vend结果出错提示:Error:This name does not have a type,and must have an explicit type.[SQRT]Warning:Arguments' data types are i

来源:学生作业帮助网 编辑:作业帮 时间:2024/05/09 07:19:25
我的程序:program examimplicit nonereal vreal sqrtopen(2,file='F:\6.txt',status='replace') v=sqrt(4)write(2,*) vend结果出错提示:Error:This name does not have a type,and must have an explicit type.[SQRT]Warning:Arguments' data types are i

我的程序:program examimplicit nonereal vreal sqrtopen(2,file='F:\6.txt',status='replace') v=sqrt(4)write(2,*) vend结果出错提示:Error:This name does not have a type,and must have an explicit type.[SQRT]Warning:Arguments' data types are i
我的程序:
program examimplicit nonereal vreal sqrtopen(2,file='F:\6.txt',status='replace') v=sqrt(4)write(2,*) vend
结果出错提示:
Error:This name does not have a type,and must have an explicit type.[SQRT]
Warning:Arguments' data types are incompatible with intrinsic procedure,assume EXTERNAL.[SQRT]
请问怎么调用啊?
Fortran中开根号函数的调用

我的程序:program examimplicit nonereal vreal sqrtopen(2,file='F:\6.txt',status='replace') v=sqrt(4)write(2,*) vend结果出错提示:Error:This name does not have a type,and must have an explicit type.[SQRT]Warning:Arguments' data types are i
v=sqrt(4)
改为
v=sqrt(4.0)