Fortran 77
Fortran 77
Fortran 77
Presented by:
Destry Diefenbach
Fortrash
<abuse, language> /for'trash/ Hackerism for the Fortran language, referring
to its primitive design, gross and irregular syntax, limited control
constructs, and slippery, exception-filled semantics.
[Jargon File]
(1994-10-26)
History of FORTRAN
Stands for IBM Mathematical
FORmula TRANslation System
but abbreviated to FORmula
TRANslation
FORTRAN 0 was developed by
a IBM research team headed by
John Backus in 1954.
Was the first high-level
programming language
John Backus
1924-1988
More History
The design of FORTRAN made it
easier to translate mathematical
formulas into code.
FORTRAN originally began as a
digital code interpreter for the IBM
701
At that time it was called
Speedcoding
The point of FORTRAN was to
make programming easier.
IBM 701
FORTRAN I
1957
Was the first compiler
By 1958 over 50% of software was in
FORTRAN
Cut development time.
2 weeks to 2 hours
FORTRAN II - IV
FORTRAN II
Independent compilation
Fix the bugs
FORTRAN III
FORTRAN IV
FORTRAN 77
FORTRAN 77 replaced FORTRAN IV as
the new standard.
It retained most of the features of IV
It added
Data Types
3E5
.123E-3
300000
.000123
1D2
100
Program Structure
A FORTRAN program is a collection of
subprogram definitions.
Subprograms may be a FUNCTION that
returns values, a SUBROUTINE that doesnt
return a value, and one must be the main
program
Main Program
The main program receives control of the processor
when an executable program is loaded for
execution.
There can be only one main program in an
executable program.
That main program is identified by the fact that it
does not have a FUNCTION, SUBROUTINE, or
BLOCK DATA statement as its initial statement.
Intrinsic Functions
FORTRAN 77 has many intrinsic functions
Examples
SQRT( )
FLOAT( ),INT ( )
COS( ),SIN( ), TAN( )
square root
type conversions
trig functions
Statement Functions
Statement functions are one line defined
functions that is internal to the program unit
in which it is defined
ROOT(A,B,C) = (-B+SQRT(B**2-4.0*A*C))/(2.0*A)
Subprograms
The main abstraction devices in FORTRAN 77 are the
subroutines and functions.
The subroutine definition
M=I
I=J
J=M
RETURN
END
Functions are structurally similar to subroutines.
Control Structures
GOTO statements
IF statements
DO statement
CONTINUE statement
STOP and PAUSE statements
END statement
GOTO Statements
The GOTO statement is used to direct
program control to indicated by the statement
number specified in the respective GOTO
statement
Three types of GOTO statements
IF Statements
Contains IF, ELSE IF, ELSE, END IF
Example
IF(Q) THEN
A=B
C=D
ELSE IF (R) THEN
E=F
G=H
ELSE
X=Y
Z=W
END IF
DO Statement
The DO statement is used to establish a
controlled loop
Example DO
DO 10 I = 1,10,1
CONTINUE,STOP
PAUSE, and END STATEMENT
The CONTINUE statement serves as a point of reference in
a program
EVALUATION
Readability
Writability
Reliability
Cost
Readability
FORTRAN 77 is not to hard to read on a
small scale, but when many GOTO
statements are involved it gets very difficult
Identifiers can only be six characters long
Writability
Depends on what you are using it for.
Is a pretty simply language
Reliability
Is not very reliable
Only static type checking
Lack of exception handling
Cost
Cheap
Lots of free resources/compilers
A fairly easy language to learn
Bibliography
American National Standards Institute, Inc. American National Standard Programming Language
FORTRAN. April 3, 1978. http://www.fortran.com/F77_std/rjcnf-0.html
Chivers, Ian D. Sleightholme, Jane. Interactive FORTRAN 77: A Hands on Approach 2nd ed. 1984.
http://www.kcl.ac.uk/kis/support/cit//fortran/f77book.pdf
Page, Rex. Didday, Rich. Alpert, Elizabeth. FORTRAN 77 for Humans, 3rd ed. 1986 West
Publishing Company
Katzan, Harry Jr. FORTRAN 77, Computer Science Series. 1978 Van Nostrand Reinhold
Company