SQL 編程 -- 打印直角三角形, while經典案例 ,case end 經典案例

declare @row int set @row = '1' while (@row<=4) begin declare @cl int set @cl = 1 while (@cl<@row) begin print '☆' set @cl = @cl+1 end print '' SET @row=@row+1 end -
相關文章
相關標籤/搜索