使用while循环语句和变量输出九九乘法表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用while循环语句和变量输出九九乘法表相关的知识,希望对你有一定的参考价值。

-设置变量i
declare @i int 
--设置变量j
declare @j int 
--设置乘法表变量
declare @Multiplication Table varchar(500)
--给i,j,@Multiplication Table赋初始值
select @i=9,@j=1,@Multiplication Table=‘‘
--使用whIle循环语句和变量打印九九乘法表
while @i>=1
begin
set @[email protected]
while @j>=1
begin
select @Multiplication Table=convert(char(2),@j)+‘x ‘+convert(char(2),@i)+‘= ‘+convert(char(2),@i*@j)+‘ ‘[email protected] Table
set @[email protected]
end
set @Multiplication Table=char(10)[email protected] Table
set @[email protected]
end
print @Multiplication Table

以上是关于使用while循环语句和变量输出九九乘法表的主要内容,如果未能解决你的问题,请参考以下文章

c#应用控制台while循环输出九九乘法表

如何用do…while循环输出九九乘法表?

用while循环语句编程输出九九乘法口诀表

九九乘法表(for循环)

用php中的while编写九九乘法表

使用循环语句编程输出下三角形状的九九乘法表