有没有广药的


私信TA

用户名:PJJ19971124

访问量:37532

签 名:

有没有广药的

等  级
排  名 104
经  验 8349
参赛次数 8
文章发表 93
年  龄 0
在职情况 学生
学  校 广东药科大学
专  业

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码:

import java.util.*;
import java.io.*;
import java.math.*;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		int m,n;
		m=sc.nextInt();
		n=sc.nextInt();
		int x=m*n;
		int y=Math.max(m, n);
		int z=Math.min(m, n);
		int temp;
		while(true){
			temp=z;
			z=y%z;
			y=temp;
			if(z==0){
				break;
			}
		}
		System.out.println(temp+" "+x/temp);
	}

}


 

0.0分

0 人评分

  评论区

  • «
  • »