¤p¦Ò 20091110

 

1. Write a program to use the following sub routine to perform adding two real numbers. Your program should ask from screen the first and second number, then print out the answer on screen.

 

subroutine add(aa,bb,sum)

real aa, bb, sum

sum = aa + bb

return