for语句应用:乘法表

乘法表:

for语句应用:

  1:
  2: public class chengfa {
  3:   public static void main(String[] args) {
  4:     //int i;
  5:     for(int i=1;i<=9;i++){
  6:       int j=1;
  7:       for(;j<=i;j++){
  8:         System.out.print(j+"×"+i+"="+(i*j)+"\t");//\t这制表符
  9:       }
 10:       System.out.println();
 11:     }
 12:   }
 13: }
 14: 

输出结果

1×1=1   
1×2=2    2×2=4   
1×3=3    2×3=6    3×3=9   
1×4=4    2×4=8    3×4=12    4×4=16   
1×5=5    2×5=10    3×5=15    4×5=20    5×5=25   
1×6=6    2×6=12    3×6=18    4×6=24    5×6=30    6×6=36   
1×7=7    2×7=14    3×7=21    4×7=28    5×7=35    6×7=42    7×7=49   
1×8=8    2×8=16    3×8=24    4×8=32    5×8=40    6×8=48    7×8=56    8×8=64   
1×9=9    2×9=18    3×9=27    4×9=36    5×9=45    6×9=54    7×9=63    8×9=72    9×9=81

for语句应用:乘法表

时间: 2024-10-27 11:28:19

for语句应用:乘法表的相关文章

PHP基础循环语句之打印99乘法表

PHP打印数学的99乘法表要用到两个For循环,for循环是php流程控制语句中较常用到的一种,流程控制语句中的结构大体分为三种:顺序结构.分支结构与循环结构 .循环结构最常用的有while循环.do--while循环.for循环,这些循环都有着自己的特点.其中,while适合条件循环,for适合次数循环,99乘法表最能反映for循环语句的特性: 另外,纯面向对象的java中不能用go to,而C语言中与php中可以用go to,goto操作符可以用来跳转到程序中的某一指定位置.该目标位置可以用

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

-设置变量ideclare @i int --设置变量jdeclare @j int --设置乘法表变量declare @Multiplication Table varchar(500)--给i,j,@Multiplication Table赋初始值select @i=9,@j=1,@Multiplication Table=''--使用whIle循环语句和变量打印九九乘法表while @i>=1beginset @[email protected]while @j>=1beginselec

python小程序练习:循环语句for,while实现99乘法表

打印99乘法表 for 循环语句实现: for i in range(1,10): for j in range(1,10): print(j,"x",i,"=",i*j,"\t",end="") #因为print自动换行,end="" 为结尾不换行 if i==j: print("") #此处是结尾换行 break while循环语句实现: i=0 j=0 while i <9:

使用whIle循环语句和变量打印九九乘法表

-设置i变量declare @i int --设置j变量declare @j int --设置乘法表变量declare @chengfabiao varchar(1000)--给i,j,@chengfabiao赋初始值select @i=9,@j=1,@chengfabiao=''--使用whIle循环语句和变量打印九九乘法表while @i>=1begin set @[email protected] while @j>=1 begin select @chengfabiao=convert

sql语句各种九九乘法表

下面用while 和 if 条件写的SQL语句的四种九九乘法表 1 --9x9 左下角 2 3 DECLARE @I INT ,@J INT,@S VARCHAR(100) 4 SET @I=1 5 WHILE @I<10 6 BEGIN 7 SET @J=1 8 SET @S='' 9 WHILE @J<=@I 10 BEGIN 11 SET @S=@S+CAST(@J AS CHAR(1))+'*'+CAST(@I AS CHAR(1))+'='+CAST((@I*@J)AS CHAR(3

python(7)- 小程序练习:循环语句for,while实现99乘法表

打印99乘法表 for 循环语句实现: 1 for i in range(1,10): 2 for j in range(1,10): 3 print(j,"x",i,"=",i*j,"\t",end="") #因为print自动换行,end="" 为结尾不换行 4 if i==j: 5 print("") #此处是结尾换行 6 break while循环语句实现: 1 i=0 2 j=

Java程序中用for循环语句 写出九九乘法表

今天学习了Java的for循环,用这个写了个九九乘法表,分享给大家.好东东要懂得分享额. 源码如下: for (int i=1;i<=9;i++) {          for (int j=1;j<=i;j++){              System.out.print(i+"*"+j+"="+(i*j)+"\t");          }          System.out.println("");  

for语句的强化(水仙花,九九乘法表,回文数等)

一.输出如下图形:11 21 2 31 2 3 41 2 3 4 51 2 3 4 5 61 2 3 4 5 6 71 2 3 4 5 6 7 81 2 3 4 5 6 7 8 9 public class five { public static void main(String[] args) {  // TODO Auto-generated method stub    for(int a=1;a<=9;a++){     for(int  b=1;b<=a;b++){      Sy

利用js的for循环实现一个简单的“九九乘法表”

For循环九九乘法表 for循环是javascript中一种常用的循环语句,可以很好的解决在程序中需要重复执行某些语句,利用for循环实现简单的“九九乘法表”的效果: 让循环从小到大,依次排序,并计算每次的结果,并用 table 使之排列出来. <script type="text/javascript"> document.write('<table border="1">'); //以表格规格打印 for(var i=1;i<=9;