import java.util.Scanner; //抄别人的代码改成java public class Main{ public static int gcd(int a,int b){ int sum=0; while(b!=0){ sum=a%b; a=b; b=sum; } return a; } public static int lcm(int a,int b){ return a*b/gcd(a,b); } public static void main(String[] age){ Scanner in=new Scanner(System.in); int a=in.nextInt(); int b=in.nextInt(); System.out.println(gcd(a,b)+" "+lcm(a,b)); } }
0.0分
0 人评分
C语言训练-计算t=1+1/2+1/3+...+1/n (C语言代码)浏览:536 |
C语言程序设计教程(第三版)课后习题7.2 (C语言代码)浏览:1172 |
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:545 |
c primer plus 第十二章 12.1小节浏览:396 |
C语言程序设计教程(第三版)课后习题1.6 (C语言代码)浏览:731 |
简单的a+b (C语言代码)浏览:624 |
IP判断 (C语言描述,蓝桥杯)浏览:1115 |
C语言程序设计教程(第三版)课后习题8.9 (C语言代码)浏览:573 |
10月月赛题解浏览:552 |
幸运数 (C++代码)浏览:2969 |