我正在编写一段代码,计划通过该代码编写一个10x10001矩阵的.txt
文件:
do i = 1, 10
read(1,10) seed !Read a number from file 1
write(2,20) seed !Write that number in file 2
do k = 1, 10000
seed = mod((a*seed),m)
R = seed/m
write(2,20) R !I want all these numbers to be next to the seed, not on new lines
end do
end do
但是所有
R
都写在换行符上。有没有一种方法可以用空格而不是换行来分隔每个数字,还是应该使用C++和管道来实现相同的代码?
最佳答案
您可以使用以下代码使write
不在末尾添加换行符:
write(2, 20, advance="no") R
关于io - 如何在Fortran中编写没有换行符的文字?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25714322/