F Right triangle star pattern program in SAP ABAP | CodeTheta

Right triangle star pattern program in SAP ABAP

August 29, 2019

Code :
REPORT ZVP_PATTERN.
PARAMETERS : ROWS TYPE CHAR10.
DATA: B TYPE CHAR10.
B = 1.

DO ROWS TIMES.
DO B TIMES.
WRITE: '*'.
ENDDO.
WRITE:/.
B = B + 1.
ENDDO.
 
Output :


IDE Used To Test This Code : SAP Login 730

Try this code in your computer for better understanding. Enjoy the code. If you have any Question you can contact us or mail us. We will reply you as soon as possible.

2 comments

TAM GIÁC VUÔNG CÓ GÓC VUÔNG TRÊN GÓC PHẢI ĐI Ạ

Reply
Anonymous mod

please help me to write it using do enddo and if elseif.

Reply

Post a Comment