写出下面程序段的执行结果: Declare @m int,@n int Select @m=0, @n=0 While @m<30 Begin Set @n=@n+3 Set @m=@m+@n End Select @m, @n

时间:2022-11-17 06:20:22

相似题目