Wanncry


私信TA

用户名:782956291

访问量:10748

签 名:

RUSH B

等  级
排  名 282
经  验 5691
参赛次数 0
文章发表 53
年  龄 20
在职情况 学生
学  校 湖北生物科技职业学院
专  业

  自我简介:

把把起野牛 3天大地球

解题思路:

注意事项:

参考代码:

Scanner scanner=new Scanner(System.in);

int a=scanner.nextInt();

int b=scanner.nextInt();

for (int i = a; i <= b; i++) {

    int t = i;

    System.out.print(t + "=");

    for (int j = 2; j <= t; j++) {

        while (t % j == 0 && j != t) {

            System.out.print(j + "*");

            t /= j;

        }      

        if (t == j) {

            System.out.println(j);

        }

    }

}


 

0.0分

4 人评分

  评论区

  • «
  • »