Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试理解 fortran 语言的代码,但我不明白是什么
DIST=AMAX1(0.,DI-DJ) 表示。
我真的对 0 旁边的点 (.) 感到困惑。
任何帮助,将不胜感激。
在此先感谢玛丽亚
AMAX1是用于获得两个或多个(单精度)浮点值的最大值的函数。.那里表示参数是浮点值而不是整数。0.是 的缩写0.0,FORTRAN 允许您省略小数点零。
AMAX1
.
0.
0.0
Internet 上有很多 FORTRAN 参考资料。例如,这里是内在函数的快速列表。