‎2008 Apr 03 7:10 AM
Hi,
How to wtite a program for this.
Accept the number and display the multiplication numbers of 5.
Thanks.
‎2008 Apr 03 7:13 AM
‎2008 Apr 03 7:14 AM
Hi,
see this code.
PARAMETERS:num(2) TYPE n.
data:res(4).
DO 10 TIMES.
res = num * 5 * sy-index.
WRITE:/ res.
ENDDO.
rgds,
bharat.