You are viewing a single comment's thread. Return to all comments →
Similar logic to the other triangle exercise (MS SQL Server)
DECLARE @n AS INT = 1 WHILE @n <= 20 BEGIN PRINT REPLICATE('* ', @n) SET @n = @n + 1 END ;
Seems like cookies are disabled on this browser, please enable them to open this website
Draw The Triangle 2
You are viewing a single comment's thread. Return to all comments →
Similar logic to the other triangle exercise (MS SQL Server)