马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
错误如下:
编译的时候:
Compiling Fortran...
D:\Program Files\Microsoft Visual Studio\MyProjects\1\1.f90
D:\Program Files\Microsoft Visual Studio\MyProjects\1\1.f90(162) : Warning: In the call to SUPS, actual argument #4 does not match the type and kind of the corresponding dummy argument.
CALL SUPS(NWD,NWD1,NF,SKK,SKK1,SMM,SMM1,LSU,JF) !调用支撑条件子程序
----------------------------^
D:\Program Files\Microsoft Visual Studio\MyProjects\1\1.f90(162) : Warning: In the call to SUPS, actual argument #5 does not match the type and kind of the corresponding dummy argument.
CALL SUPS(NWD,NWD1,NF,SKK,SKK1,SMM,SMM1,LSU,JF) !调用支撑条件子程序
--------------------------------^
D:\Program Files\Microsoft Visual Studio\MyProjects\1\1.f90(162) : Warning: In the call to SUPS, actual argument #6 does not match the type and kind of the corresponding dummy argument.
CALL SUPS(NWD,NWD1,NF,SKK,SKK1,SMM,SMM1,LSU,JF) !调用支撑条件子程序
-------------------------------------^
D:\Program Files\Microsoft Visual Studio\MyProjects\1\1.f90(162) : Warning: In the call to SUPS, actual argument #7 does not match the type and kind of the corresponding dummy argument.
CALL SUPS(NWD,NWD1,NF,SKK,SKK1,SMM,SMM1,LSU,JF) !调用支撑条件子程序
-----------------------------------------^
D:\Program Files\Microsoft Visual Studio\MyProjects\1\1.f90(166) : Warning: In the call to GJAC, actual argument #1 does not match the type and kind of the corresponding dummy argument.
CALL GJAC(SKK1,SMM1,U,E,NWD1,NWD1) !调用广义雅克比法子程序
--------------------^
D:\Program Files\Microsoft Visual Studio\MyProjects\1\1.f90(166) : Warning: In the call to GJAC, actual argument #2 does not match the type and kind of the corresponding dummy argument.
CALL GJAC(SKK1,SMM1,U,E,NWD1,NWD1) !调用广义雅克比法子程序
-------------------------^
D:\Program Files\Microsoft Visual Studio\MyProjects\1\1.f90(166) : Warning: In the call to GJAC, actual argument #3 does not match the type and kind of the corresponding dummy argument.
CALL GJAC(SKK1,SMM1,U,E,NWD1,NWD1) !调用广义雅克比法子程序
------------------------------^
D:\Program Files\Microsoft Visual Studio\MyProjects\1\1.f90(166) : Warning: In the call to GJAC, actual argument #4 does not match the type and kind of the corresponding dummy argument.
CALL GJAC(SKK1,SMM1,U,E,NWD1,NWD1) !调用广义雅克比法子程序
--------------------------------^
1.obj - 0 error(s), 8 warning(s)
连接的时候:
Linking...
1.obj : error LNK2001: unresolved external symbol _NOTE@8
Debug/1.exe : fatal error LNK1120: 1 unresolved externals
Error executing link.exe.
1.exe - 2 error(s), 0 warning(s)
调用子程序的时候好像实参和形参都没有问题啊,请教问题在哪儿。谢谢! |