file already opened in another unit是哪出错了啊? 20

在线等急------,,,,,,... 在线等 急------,,,,,, 展开
 我来答
Miafifi
2015-10-05 · TA获得超过451个赞
知道小有建树答主
回答量:277
采纳率:93%
帮助的人:171万
展开全部

The name of file must be different in your code. This is the reason you got the error to open an opened file.

I guess, you want to fetch the data from the file (marked as 7) and save the calucated the result to the file (marked as 8).

Here is the example code of mine to show you how to read the data from file properly

program datafetch
            implicit none

            real :: a(3,3)
            real :: b(3,3)
            real :: c(3,3)
                integer :: i
                integer :: j

            open(unit=10,file="data.txt",status="old")
            open(unit=20,file="result.txt",status="unknown")

            read(10,*) ( ( a(i,j), j=1,3 ), i=1,3 )
            read(10,*) ( ( b(i,j), j=1,3 ), i=1,3 )

            do i=1,3
                do j=1,3
                    c(i,j) = a(i,j) + b(i,j)
                enddo
            enddo

            write(20,*) "result"
            write(20,*) ( ( c(i,j), j=1,3 ), i=1,3 )

            close(10)
            close(20)

        end program datafetch


baby离栀
2015-10-02
知道答主
回答量:12
采纳率:0%
帮助的人:3.3万
展开全部
在另一个单位文件已经打开
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式