主题:求助:初学Fortran发现问题
本人刚开始学Fortran,用最简单的一个程序进行试验
program main
implicit none
write(*,*)"hello"
stop
end
总是无法运行,出现信息hello.exe - 1 error(s), 0 warning(s)
按F4键后出现:--------------------Configuration: hello - Win32 Debug--------------------
Compiling Fortran...
Invalid keyboard code specified
Program too big to fit in memory
Linking...
LINK : fatal error LNK1181: cannot open input file ".\Debug\hello.obj"
Error executing link.exe.
hello.exe - 1 error(s), 0 warning(s)
请问这是什么原因啊?
program main
implicit none
write(*,*)"hello"
stop
end
总是无法运行,出现信息hello.exe - 1 error(s), 0 warning(s)
按F4键后出现:--------------------Configuration: hello - Win32 Debug--------------------
Compiling Fortran...
Invalid keyboard code specified
Program too big to fit in memory
Linking...
LINK : fatal error LNK1181: cannot open input file ".\Debug\hello.obj"
Error executing link.exe.
hello.exe - 1 error(s), 0 warning(s)
请问这是什么原因啊?