参考代码:
import java.util.*; import java.math.*; public class Main { public static void main(String[] args) { Scanner cin = new Scanner(System.in); BigInteger a = cin.nextBigInteger(); BigInteger b = cin.nextBigInteger(); System.out.print(gcd(a, b).toString()); } public static BigInteger gcd(BigInteger a, BigInteger b) { int val = b.compareTo(new BigInteger("0")); return val != 0 ? gcd(b, a.remainder(b)) : a; } }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:1158 |
程序员的表白 (C语言代码)浏览:1462 |
字符串输入输出函数 (Java代码)浏览:1498 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:561 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:583 |
简单的a+b (C语言代码)浏览:641 |
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:672 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:727 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:566 |
Tom数 (C语言代码)浏览:758 |