Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
28469 Discussions

run-time error I got, please someone instruct me how to solve.

brb36641
Beginner
374 Views

Hellow.

I got run-time error when my fortran program has run under windows XP sp2.

run-time error F6204: READ(CON)
- unformatted I/O not consistent with OPEN options

What is wrong?

0 Kudos
2 Replies
Steven_L_Intel1
Employee
374 Views
I gather you're using a Microsoft Fortran compiler? Those have not been sold or supported for more than a decade.

I would guess that you have done something like:

READ (5) x,y,z

which is an unformatted input statement. The console is usually opened for formatted access only. Try using an explicit format or list-directed (FMT=*).
0 Kudos
brb36641
Beginner
374 Views

Thank you very much for suggestion. I will try to recording wiht explicit format according to your instruction.

0 Kudos
Reply