You are viewing a single comment's thread. Return to all comments →
Declare @vik int = 20 while @vik >= 1 Begin Print Replicate ('* ', @vik) Set @vik = @vik - 1 End
Seems like cookies are disabled on this browser, please enable them to open this website
Draw The Triangle 1
You are viewing a single comment's thread. Return to all comments →
Declare @vik int = 20 while @vik >= 1 Begin Print Replicate ('* ', @vik) Set @vik = @vik - 1 End