用SQL语句使用循环语句编程,计算组合数C(15, 10) = (15*14*13*…*6) / (10*9*8*…*1)的值。
用SQL语句创建有输入参数x和输出参数y的存储过程proc1_**(**表示学号,下同),实现下面公式的计算,并给出x=100时的结果。...
用SQL语句创建有输入参数x和输出参数y的存储过程proc1_**(**表示学号,下同),实现下面公式的计算,并给出x=100时的结果。
展开
1个回答
展开全部
create proc proc1_01(@x int,@y float output)as
declare @I as int
set @I=1
set @y=1
while @I<=@x
begin
set @y=@y*(@I+5)/@I
set @I=@I+1
end
go
--调用
declare @y float
exec proc1_01 100,@y output
print @y
declare @I as int
set @I=1
set @y=1
while @I<=@x
begin
set @y=@y*(@I+5)/@I
set @I=@I+1
end
go
--调用
declare @y float
exec proc1_01 100,@y output
print @y
追问
追答
create proc proc1_01(@x int,@y float output)as
set @y=case when @x<=0 then @x
when @x<=100 then SQRT(@x)
else @x^3
end
go
--调用
declare @y float
exec proc1_01 100,@y output
print @y
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |