Fortran 77

Thread Starter

braddy

Joined Dec 29, 2004
83
Hi , I need help to write a code for this function(fortran 77):

integer function delete(id, list, n) where
• delete returns 0 if the deletion was successful, -1 if the list is empty, and -2 if the user is not currently in the list.
•id is the integer identification number of the user.
•list is the integer array from which the id is to be removed.
•n is the current length of the list.

I tried this:
Rich (BB code):
  integer function delete(id,list,n)
   integer i,indexe,j
   do 20 i=1,n
   if(list(i).EQ.id) then
     indexe=i

20  continue
     do 30 j= indexe,n
     list(i) = list(i+1)
30    continue
   n = n-1
   return 0
I have not finfished because I am stuck . I dont know where to introduce the else statement that would indicat the id is not in the list.
My second problem is that How to check if that array is empty?

please can someone help me?
Thank you for the time.
 
Top