Recent content by dvo

  1. D

    Fortran Fortran 90 - How to write all on one line

    I am running windows 7. I used notepad and wordpad to view the files.
  2. D

    Fortran Fortran 90 - How to write all on one line

    Oh no. Regardless of how many decimals places there are, I need a code that will continue the output on the same line even if the output becomes too long. I know it sounds ridiculous but this problem is for a larger program I'm currently working on that includes a kind of spreadsheet where I...
  3. D

    Fortran Fortran 90 - How to write all on one line

    Hi I am trying to write the following into a file using visual studio 2005: REAL :: X =5 open(1, file = 'File.txt') write(1,*) X, X, X, X, X, X, X END Is there a way I can have the output on just one line? I need it to be from the variable X instead of just changing it to '5' The...
Back
Top