DSTJZ


私信TA

用户名:dotcpp0721777

访问量:9614

签 名:

时间可以解决许多问题

等  级
排  名 48
经  验 12122
参赛次数 13
文章发表 324
年  龄 18
在职情况 学生
学  校 狗熊岭23届毕业生
专  业

  自我简介:

TA的其他文章

java--study||O.o
浏览:36
java--study||O.o
浏览:45
java--study||O.o
浏览:37


参考代码:

import java.util.Scanner;

public class Main
{	public static void main(String[] args)
	{	Scanner scanner = new Scanner(System.in);
		int n = scanner.nextInt();
		int m = scanner.nextInt();
		for(int i = n; i <= m; i++)
			judgePrint(i);
	}
	public static void judgePrint(int x)
	{	int i = 2;
		System.out.print(x + "=");
		while(x > i)
		{	if(x % i == 0)
			{	System.out.print(i + "*");
				x /= i;
			}
			else
				i++;
		}
		System.out.println(i);
	}
}


 

0.0分

5 人评分

新上线《蓝桥杯辅导》课程,近五年的蓝桥杯省赛与国赛真题都有,从读题开始理解题意、梳理思路、实现代码再提交评测全过程,可有效提升获奖比例甚至进国赛!课程介绍、试听请猛击这里

  评论区

  • «
  • »