You are viewing a single comment's thread. Return to all comments →
GUYS EASIEST ONE DECLARE @j INT = 20; WHILE (@j > 0) BEGIN PRINT REPLICATE('* ', @j) SET @j = @j - 1; -- decrement j 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 →
GUYS EASIEST ONE DECLARE @j INT = 20; WHILE (@j > 0) BEGIN PRINT REPLICATE('* ', @j) SET @j = @j - 1; -- decrement j END