句号在 Fortran 的这一行中起什么作用?

发布于 2024-07-17 22:44:25 字数 122 浏览 1 评论 0原文

我不确定这是什么版本的 Fortran,但该行是:

Term = F*F - 4.*E*G

我知道它将 F 乘以 F,然后减去一些值,但我不知道4之后的时期在那里做什么。

I am not sure what version of Fortran this is, but the line is:

Term = F*F - 4.*E*G

I know that it multiplies F by F and then subtracts something, but I don't know what the period after the 4 is doing there.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

雨落□心尘 2024-07-24 22:44:25

我将根据我见过的所有其他编程语言进行大胆的猜测,并说它使常量“4”成为 Real 类型,而不是 Integer 类型。 换句话说,它确保表达式中的类型全部匹配。 “4.0”是等价的; 无论谁写了这段代码,那天都感觉格外简洁。

I'm going to venture a guess based on every other programming language I've ever seen, and say that it's making the constant "4" of type Real, rather than Integer. In other words, it's making sure the types in the expression all match up. "4.0" would be equivalent; whoever wrote this code was just feeling extra concise that day.

铁憨憨 2024-07-24 22:44:25

它使其成为实数而不是整数。

It makes it a real number instead of an integer.

方觉久 2024-07-24 22:44:25

如果您不熟悉 Fortran,那么“REAL”数字在类 C 语言中就是所谓的“浮点数”。

但默认情况下,只有 Fortran 程序员才能说上帝是真实的。

If you're new to Fortran, a "REAL" number is what is called in C-like languages a "float".

But only Fortran programmers can say the GOD is REAL, by default.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文