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 with Fortran 95
Learn How To Make Video Games, This ebook shows you everything you need to know to make video games....
DotNet for professionnalsDownload free DotNet tutorial course in PDF, training file in 58 chapters and 192 pages. Free unaffiliated ebook created from Stack OverFlow contributor....
COBOL ProgrammingDownload COBOL tutorial in PDF,a free training courses under 236 pages to learn the basics of COBOL language...
Object-oriented Programming in C#Download free course Object-oriented Programming in C#, pdf file on 485 pages by Kurt Normark....
Problem Solving with Algorithms and Data Structures Using PythonTHIS TEXTBOOK is about computer science. It is also about Python. However, there is much more. The study of algorithms and data structures is central to understanding what computer science is all about. Learning computer science is not unlike learning any other type of difficult subject matter. Th...
Basic OOP in JavaThis tutorial you will learn the basics of Object-Oriented Programming in Java including class ,methods ,construcstors with some examples....
Get Started with ArduinoDownload free course Get Started with Arduino, pdf file on 180 pages by Matt Bradshaw, Jo Hinchliffe, Dr Andrew Lewis, Jenny List, Brian Lough, Graham Morrison, John Wargo....
IPython Interactive Computing and Visualization CookbookDownload free course IPython Interactive Computing and Visualization Cookbook, pdf file on 548 pages by Cyrille Rossant....
Python Data Science HandbookDownload free course Python Data Science Handbook, pdf file on 548 pages by Jake VanderPlas....
Using .NET Core, Docker, and Kubernetes SuccinctlyDownload free course Using .NET Core, Docker, and Kubernetes Succinctly, pdf file on 91 pages by Michele Aponte....