Author |
Message |
Topic: compilation error! |
lawchellie
Replies: 2
Views: 6310
|
Forum: Support Posted: Mon Apr 23, 2012 6:17 pm Subject: compilation error! |
! program to generate course grade report
implicit none
real:: MTH112(10), MTH110(10), MTH123(10), MTH125(10), PHY111(10), PHY113(10), PHY124(10)
integer:: counter
character*(10):: pcs10046
open( ... |
Topic: cannot connect to a file! |
lawchellie
Replies: 9
Views: 10091
|
Forum: Support Posted: Mon Apr 16, 2012 10:30 am Subject: cannot connect to a file! |
hello guys!
pls how can i connect a source code to a file? have this source code below but cannot connect to the file even when i have it locally. thanks
! a dummy program
implicit none
real: ... |
Topic: logical error (pls help!) |
lawchellie
Replies: 1
Views: 3626
|
Forum: Support Posted: Mon Apr 02, 2012 5:13 pm Subject: logical error (pls help!) |
! program to calculate student GPA grade
implicit none
integer :: no_of_courses
real :: grade_point_obtain=0.0, total=0.0, G_P_A=0.0
integer :: course
real, dimension[:], allocatable :: credit
... |
Topic: error during compilation of a program!(update) |
lawchellie
Replies: 2
Views: 5496
|
Forum: Support Posted: Mon Mar 26, 2012 4:04 pm Subject: error during compilation of a program!(update) |
guys, tried to compile a program to calculate student's GPA but am having this error during compilation. script of the program and error generated are here below, thanks.
! program to calculate s ... |
Topic: how to calculate elements in an array! |
lawchellie
Replies: 2
Views: 4373
|
Forum: Support Posted: Fri Mar 23, 2012 10:59 am Subject: how to calculate elements in an array! |
when have an array of the type [-4:8], how many elements make up the array? a little bit confuse when calculating the number of elements of this type. thanks for assistance |
Topic: execution error owning to wrong input! |
lawchellie
Replies: 1
Views: 3823
|
Forum: Support Posted: Thu Jan 26, 2012 12:34 pm Subject: execution error owning to wrong input! |
implicit none
integer :: year, n, month, day, t
! t is an offset to account for leap years.
print*, 'year, followed by day within year'
read*, year, n
! checking for leap years
if ((year/4)*4==y ... |
Topic: error executing a program! |
lawchellie
Replies: 1
Views: 4579
|
Forum: Support Posted: Thu Jan 19, 2012 1:44 pm Subject: error executing a program! |
implicit none
integer :: i, f, Factorial
print*, 'type in the number, integer only'
read*, i
do while(i<0)
print*, 'factorial only defined for positive integers: Re-input'
read*, i
end ... |
Topic: array rank error! |
lawchellie
Replies: 2
Views: 8206
|
Forum: Support Posted: Fri Dec 23, 2011 12:48 pm Subject: array rank error! |
tried to run a program but having this error, pls help me out!
C:\projects\job1.F95(10) : error 199 - Array RAINFALL appears in this expression as rank 1, but was declared as rank 2
C:\projects\jo ... |
|