在 Fortran 中读取可变长度/类型行

发布于 2024-10-04 08:09:32 字数 212 浏览 2 评论 0原文

我有一行 Fortran 数据,我需要读入不同的值。值的数量可以是任何值,类型也可以是任何值。示例

0.45 1 T F

0.45 1 T 2.45 18.0 45.2

如何成功读取这一行,或者至少将其分解为基本标记,而不获取下一行信息(必须不惜一切代价防止这种情况)。

I have a row of data in fortran, and I need to read in the different values. The number of values can be anything, and the type as well. Examples

0.45 1 T F

or

0.45 1 T 2.45 18.0 45.2

how can I read successfully this row, or at least decompose it in its fundamentals tokens, without fetching the next line information (this must be prevented at all costs).

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

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

发布评论

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

评论(1

行雁书 2024-10-11 08:09:32

您可以将整行读入字符类型的变量中,然后对字符变量执行任何您想要的操作,然后读取下一行,依此类推。

You can read the entire row into a variable of type character, then you do whatever you want with the character variable, then read the next row and so forth.

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