Fortran 格式左对齐

发布于 2024-10-31 12:59:06 字数 192 浏览 3 评论 0原文

是否可以在 Fortran 中左对齐打印输出的值,而不是默认的右对齐?

例如,我有这样的格式化程序

"(A3,10A12)"

"(A1, I12, 9F12.6)"

我希望用以下方式打印字符串和数字这些格式化程序左对齐,而不是右对齐。

Is it possible to left align a printed out value in Fortran, instead of the default right alignment ?

For example, I have formatters like this

"(A3,10A12)"

and

"(A1, I12, 9F12.6)"

I would like the strings and numbers printed with these formatters to be left aligned, instead of right aligned.

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

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

发布评论

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

评论(1

拥有 2024-11-07 12:59:06

默认不是右对齐吗?

如果您首先将数字写入字符串,则可以使用内在函数 adjustmentL 或 adjustmentR 来获取任一调整,然后输出字符串。

Isn't right-justified the default?

If you first write a number to a string, you could use the intrinsics adjustL or adjustR to get either adjustment, then output the string.

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