sjgau02
unread,Oct 7, 2008, 3:46:15 AM10/7/08Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to NTUST_F90
! VF1007.f90
!
! FUNCTIONS:
! VF1007 - Entry point of console application.
!
! Example of displaying 'Hello World' at execution time.
!
!
****************************************************************************
!
! PROGRAM: VF1007
!
! PURPOSE: Entry point for 'Hello World' sample console application.
!
!
****************************************************************************
program VF1007
implicit none
integer a, b, c
a= 5
b= 6
c= a*b
print *, 'Hello World, a*b= ', c
end program VF1007