格式“(a,2(2x,3i4))”是什么意思?意思是?

发布于 2025-01-11 16:38:37 字数 97 浏览 0 评论 0原文

我正在使用 Fortran 中的一些代码,其中写入某些文件的格式为 '(a,2(2x,3i4))'

您如何分解其中的每个部分以理解其含义?

I am working with some code in Fortran where the format of writing out to some file is '(a,2(2x,3i4))'.

How do you break each part of this down to understand what it means?

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

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

发布评论

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

评论(1

苦妄 2025-01-18 16:38:37
  • a = 值中长度的字符串
  • 2( = 括号中内容的组重复两次
  • 2x = 跳过两列
  • 3i4 = 4 位整数,如果需要,左边用空格填充,重复 3 次
  • a = character string of the length in the value
  • 2( = group repeat of what's in the parentheses two times
  • 2x = skip two columns
  • 3i4 = 4-digit integer, left padded with blanks if needed, repeated three times
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文