Download free Fortran 90 Programming language course material, tutorial training, a PDF file by Tadziu Hoffmann & Joachim Puls.
Table of contents
A FORTRAN program is primarily a sequence of instructions in ASCII characters. The file containing these instructions must end in .f, .F (or .f90 or .F90 if Fortran 90 has followed for writing files).
In FORTRAN 77, the lines are limited to 80 characters. The first 6 characters have a special status:
A line corresponding to a normal statement starts at character 7 (after 6 white characters).
A character "c" or "!" in the first column means that the line is a comment line.
Any character in the 6th column indicates that the line is the continuation of the previous line.
Uppercase and lowercase letters are undifferentiated in Fortran.
A Fortran program starts with a "program" statement and ends with an "end" statement.
In Fortran 90, we can write from the first character. Comments start with one! Lines can exceed 80 characters.
Essentially, there is upstream compatibility between the two versions of Fortran, ie a code written in Fortran 77 can be compiled fortran 90/95. However, this does not concern the writing format described above. If we follow the format fortran 77, we will name the file program.f. If we follow fortran 95, program.f90. In any case, the compilation will be done with the same command g95.
Size : | 116.168 Kb |
File type : | |
Downloads: | 324 |
Created: | 2018-05-21 |
Introduction to Programming using Fortran 95/2003/2008
Fortran 90/95 Programming Manual
Download free course Elementary Algorithms, pdf file on 642 pages by Larry LIU Xinyu....
Test-Driven Development with PythonDownload free course Test-Driven Development with Python, pdf file on 502 pages by Harry J. W. Percival....
Classic Computer Science Problems in PythonThis book deepens your knowledge of problem-solving techniques from the realm of computer science by challenging you with time-tested scenarios, exercises, and algorithms. As you work through examples in search, clustering, graphs, and more, you'll remember important things you've forgotten and disc...
Beginner's Android DevelopmentBeginner's Android Development Tutorial in PDF,free training course document under 26 pages to learn the basics of Mobile development....
Python and the XMLParser of HTML and XML with python and library Python Programming Course Tutorial Computing Learning....
Learning ABAP PDF courseDownload free ABAP tutorial course in PDF, training file in 16 chapters and 42 pages. Free unaffiliated ebook created from Stack OverFlow contributor....
Python for Informatics: Exploring InformationThis book is designed to introduce students to programming and computational thinking through the lens of exploring data. You can think of Python as your tool to solve problems that are far beyond the capability of a spreadsheet. It is an easy-to-use and easy-to learn programming language that is fr...
Video Game Development in UnityDownload this free tutorial about Video Game Development in Unity, training document on 34 pages intended to beginners....
Introduction to C++ ,PointersHere you will learn how to get started with pointers in C++, how to access to the variables and memory, and how to use the pointers and arrays....
Learning Symfony 3Symfony 3 tutoririal to download for free, PDF document on 46 pages created by StackOverFlow which teaches you the basics of this framwork. After reading this tutorial you will know the basics of the Symfony 3 framework...