next up previous
Next: Basic Data Types in Up: CS101 Lecture 8 Previous: Variables

Declaring Variables

Variables can be of any type (later).
  Program Vardemo
   Implicit none  ! **must in all cs101 programs**
   ! declare all vars first
   Integer :: Max, Min
   Real ::  Radius
   ...
   ! then write the code..



G. Sivakumar 2000-08-16