连接两个整数
在 Fortran 中将两个整数连接成一个整数的最佳方法是什么?
integer a = 999
integer b = 1111
integer c
应该是 9991111
谢谢, SM。
What is the best way to concatenate two integers to an integer in Fortran?
integer a = 999
integer b = 1111
integer c
should be 9991111
Thanks,
SM.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是一个示例代码,可以满足您的需要。它将整数写入字符串,修剪并连接它们,然后从连接的字符串中读取结果整数:
编辑:请注意,此示例适用于任何整数长度,假设它们适合各自的
种类
(没有整数溢出)。Here is an example code that does what you need. It writes integers into character strings, trims and concatenetes them, and then reads the result integer from concatenated character string:
Edit: Note that this example is general for any integer lengths, assuming they fit into their respective
kind
(no integer overflow).您可以使用号码顺序信息:
You can use the information of the order of the number:
最好的选择是使用 内部文件 将两个整数转换为字符,然后将其转换回整数。
没有将数值转换为字符/字符串表示形式的内在过程。有关详细信息,请参阅 Fortran Wiki 上的此讨论(请参阅标题为“注释”的部分)。
例如,在您的情况下,您可以使用以下内容:
如果您想要不同宽度的整数字符表示形式,则必须更改格式字符串。
Your best bet is to use internal files to convert your two integers to a character, and then convert this back to an integer.
There is no intrinsic procedure for converting a numeric value to a character/string representation. See this discusson on Fortran Wiki for more information (see the part headed "Note").
As an example, in your case you could use the following:
You will have to change the format string if you want different widths of the character representation of your integers.