#2
mywisdom882017-03-22 09:09
|
declare @a int,@x int
set @a=0
set @x=1
while @x<=100
begin
if(@x%3=0)
select @a=@a+1 --计数a加一
select @x=@x+1 --自变量加一
/*else
select @x=@x+1*/ --如果不符合x%3=0, 不也得自变量x加一吗?为什么把这个注释掉 分析就能通过,else 附近什么地方语法错了?
end
print @a