import java.util.Scanner; public class Main{ public static int gcd(int m, int n) {//最大公约数 return (m%n==0)?n:gcd(n,m%n); } public static void main(String[]args) { Scanner sc=new Scanner(System.in); int a=sc.nextInt(); int b=sc.nextInt(); int ans=gcd(a,b); System.out.println(ans+" "+a*b/ans); } }
0.0分
0 人评分
简单的a+b (C语言代码)浏览:528 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:530 |
C二级辅导-统计字符 (C语言代码)浏览:529 |
C语言训练-字符串正反连接 (C语言代码)浏览:664 |
C语言训练-排序问题<1> (C++代码)浏览:632 |
【绝对值排序】 (C语言代码)浏览:832 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:1072 |
C语言程序设计教程(第三版)课后习题8.3 (C语言代码)浏览:624 |
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:1368 |
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)浏览:688 |