代码如下:

public class test {

    public static void main (String args[]){
        int mul=1;
            for(int i=2;i<=100;i++){
        
                System.out.println(mul+"*"+i+"="+(mul*i));
            }
    }
}



【运行结果】程序运行结果附上图片。

从一乘到一百

相关文章:

  • 2021-06-13
  • 2021-10-18
  • 2021-10-02
  • 2021-09-12
  • 2022-12-23
  • 2022-12-23
  • 2021-05-30
  • 2021-09-30
猜你喜欢
  • 2021-12-17
  • 2021-07-04
  • 2021-06-23
  • 2022-12-23
  • 2021-08-11
  • 2022-01-11
  • 2021-05-24
相关资源
相似解决方案