Scala编写的打印乘法口诀和金字塔

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Scala编写的打印乘法口诀和金字塔相关的知识,希望对你有一定的参考价值。

   刚开始接触scala,觉得语法简单,一时兴起就写了两个简单的例子
public class Calculate {
public static void test1(){
for(int i=1;i<10;i++){
for(int j=1;j<=i;j++){
System.out.print(j+"*"+i+"="+i*j+" ");
}
System.out.println();
}
}
public static void test2(){
int i=1;
while(i<10){
int j=1;
while(j<=i){
System.out.print(j+"*"+i+"="+i*j+" ");
j++;
}
System.out.println();
i++;
}
}
     public static void main(String[] args) {
    test1();
    test2();
}
}

 

public class Pyramid {
public static void open(int k){
for(int i=1;i<=k;i++){
for(int j=1;j<=k-i;j++){
System.out.print(" ");
}
for(int j=1;j<=i;j++){
System.out.print("* ");
}
System.out.println();
}
}

public static void main(String[] args) {
open(9);
}

}

 

以上是关于Scala编写的打印乘法口诀和金字塔的主要内容,如果未能解决你的问题,请参考以下文章

用C#打印99乘法表

python---------打印乘法口诀

scala基础题--函数可以没有返回值案例,编写一个函数,从终端输入一个整数,打印出对应的金字塔

用Java打印乘法口诀表

九九乘法表

Java实验项目二——二维数组实现九九乘法表