Printing with F951149 (9/21/2005 11:14:45 AM) comp.lang.fortran Hi! I am trying to implement printing to my Laserjet with the basic f90 F complier from Fortran store bought some 3-4 years ago. OS NT4 . I am new to this so please don=B4t flame me... I recall from Universit... matti_overmark(11)
should i write keywords uppercase?4449 (11/3/2005 12:15:23 PM) comp.lang.fortran Hi, i am a student of physics and we are going to use Fortran in our lessons soon. Now i have read in one tutorial that i should write keywords uppercase another says it would be more professional to write lo... news7655(35)
Some formatting problems1943 (11/23/2005 3:28:12 PM) comp.lang.fortran Salutations Fortraners: I am trying to do some cellular programming of insect spread. Several years back I promptly converted the original fortran77 program to C (not wanting to deal with an obsolete language... aprasad(8)
Speed Test between C and Fortran 952133 (11/30/2005 5:21:08 PM) comp.lang.fortran Salutations Fortraners: In my previous post (about formatting issues with Fortran 95), I had indicated that I am switching to Fortran 95 from C for implementing a spatially explicit cellular model (2d array) of... aprasad(8)
Simulate End-of-file with a keystroke950 (12/13/2005 3:21:12 PM) comp.lang.fortran Hi, In the code below I am able to committing a file like: $> myprog 0) THEN ... something wrong ... ELSE IF (Reason myprog) only I can enter values manually. To finish the input I press CTRL-D ... hibr(33)
dumb question #1 re: DO loops1140 (12/29/2005 1:53:29 PM) comp.lang.fortran I am an long-time C programmer converting an old Fortran program to C. Given the following construct: DO 370 J=1,100 IF(ID(J).LT.0) GOTO 370 c (some other code here) 370 CONTINUE What does GOTO 370... stevomatic2000(2)
random selection without replacement2151 (1/17/2006 3:10:35 PM) comp.lang.fortran HI, I plan a simulation design as follows: 1. write a main program to do the simulation 2. the main program includes two big subroutine programs (1) read_dataset.for (This subroutine reads dataset files, incl... pcatchen(35)
Simple formatting question343 (6/13/2006 11:24:02 AM) comp.lang.fortran How do I modify the read/write format statement so that it outputs exactly what it reads in? If there is a decimal place, it outputs the decimal place exactly; no decimal means no outputted decimal. Example #1... tco99(2)
Write A, left justified, howto?3160 (12/28/2006 7:17:32 AM) comp.lang.fortran How can I make the following print ID, Code and Name left justified not right? I found that if I pad ID, Code and Name to be longer than the desired output then it becomes left justified. write(*, '(A4,1X,A10,... my-first-name(5)