Textbook Material
None
The set of slides used in class is available in the
common directory
with filename
F90-Control.pdf.
The accuracy and reliability slide set is in the
common directory
with filename
Accuracy.pdf.
(read ahead)
Some Very Simple Fortran 90 Practice
CHARACTER(LEN=4) :: A = "abcdef", B = "ghik", C = "opq", D = "xy"What is the result of each of the following Fortran 90 expressions?
CHARACTER(LEN=10) :: L, M, N
What is the result of the following?
What is the result of the following?
Suppose we wish to concatenate character variables A and B, and retrieve the substring (3:6). How would you carry out this operation? Can we use A // B(3:6) or (A // B)(3:6)? Are they correct? If they are, what would be the results, and which one can yield the desired result?