Calculus Computer Lab
Math 190


News

Lab Schedule

QuickBasic Notes

Fortran Notes

Tutor Room

Winplot Manual

Lab Home

xxxxxxxxxxxxxxxxxx

        program demo1
c       This program demonstrates integer arithmetic.
        print *, "3/4 = ", 3/4
        print *, "3./4. = ", 3./4.
        print *, "7/3 = ", 7/3
        print *, "7./3. = ", 7./3.
        print *, "9 ** (1/2) = ", 9 ** (1/2)
        print *, "9 ** (1./2.) = ", 9 ** (1./2.)
        end