九九乘法表

Posted 陌尘枫

tags:

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

打印乘法口诀表

(1)编写一个方法,参数(二维数组),完成将二维数组中的数据按照行列显示的工作。

(2)编写一个测试方法,给出99乘法表,放入到二维数组中,调用(1)中的方法,显示乘法口诀表。

代码:

 1 package experiment;
 2 
 3 public class Multi_nine {
 4     public static void main(String args[]) {
 5         out_shape();
 6     }
 7     //将二维数组中的数据按照行列显示
 8     public static void out_shape() {
 9         int a[][] = assign();
10         for(int i = 0; i < a.length; i++){
11             for(int j = 0; j < a[i].length; j++) {
12                 System.out.print((j + 1) + " * " + (i + 1) +  " = ");
13                 System.out.print(a[i][j] + "\t");
14             }
15             System.out.print("\n");
16         }
17     }
18     
19     public static int[][] init() {
20         int a[][] = null;
21         a = new int[9][];
22         for(int i = 0; i < a.length; i++) {
23             a[i] = new int[i+1];
24         }
25         return a;
26     }
27     
28     public static int[][] assign() {
29         int a[][] = null;
30         a = init();
31         for(int i = 0; i < a.length; i++){
32             for(int j = 0; j < a[i].length; j++) {
33                 a[i][j] = (i + 1) * (j + 1);
34             }
35         }
36         return a;
37     }
38 }

 

以上是关于九九乘法表的主要内容,如果未能解决你的问题,请参考以下文章

C语言九九乘法表源代码的理解。

九九乘法表代码详解

我是java初学者,怎么在命令符中输出九九乘法表?请把代码给我谢谢。

怎么用java编写程序实现九九乘法表?

用JSP编写一个九九乘法表问题?

vb编程输出九九乘法表