题目
java 求最大公约数,最小公倍数
利用辗转相除法求两个整数的最大公约数和最小公倍数.注意,这里只写一个方法求最大公约数,最小公倍数放到main方法中完成.
import java.util.Scanner;
public class Chpt7_4 {
public static int fun1(int a1,int b1)
{ int c;
c=a1%b1;
while (c>0)
{a1=b1;
b1=c;
c=a1%b1;
return (b1);
}
}
public static void main(String[] args) {
int a,b,temp;
int m;
Scanner in=new Scanner(System.in);
a=in.nextInt();
b=in.nextInt();
if(a
利用辗转相除法求两个整数的最大公约数和最小公倍数.注意,这里只写一个方法求最大公约数,最小公倍数放到main方法中完成.
import java.util.Scanner;
public class Chpt7_4 {
public static int fun1(int a1,int b1)
{ int c;
c=a1%b1;
while (c>0)
{a1=b1;
b1=c;
c=a1%b1;
return (b1);
}
}
public static void main(String[] args) {
int a,b,temp;
int m;
Scanner in=new Scanner(System.in);
a=in.nextInt();
b=in.nextInt();
if(a
提问时间:2020-10-18
答案
import java.util.Scanner;
public class C{
public static int fun1(int a1,int b1){
int c;
c=a1%b1;
while (c>0)
{a1=b1;
b1=c;
c=a1%b1;
//return b1;
}
return b1; //把return写在这里;
}
public static void main(String[] args) {
int a,b,temp;
int m;
Scanner in=new Scanner(System.in);
a=in.nextInt();
b=in.nextInt();
if(a
public class C{
public static int fun1(int a1,int b1){
int c;
c=a1%b1;
while (c>0)
{a1=b1;
b1=c;
c=a1%b1;
//return b1;
}
return b1; //把return写在这里;
}
public static void main(String[] args) {
int a,b,temp;
int m;
Scanner in=new Scanner(System.in);
a=in.nextInt();
b=in.nextInt();
if(a
举一反三
我想写一篇关于奥巴马的演讲的文章,写哪一篇好呢?为什么好
奥巴马演讲不用看稿子.为什么中国领导演讲要看?
想找英语初三上学期的首字母填空练习……
英语翻译
1,人们染上烟瘾,最终因吸烟使自己丧命.
最新试题
- 1用递推公式求出的通项公式需要用数学归纳法检验码?
- 2某数的三分之一与七分之五的和等于二又十四分之三,求某数?
- 3英语翻译
- 4语文题目(联系上下文,解释下列词语)
- 5关于大一数学函数极限的问题
- 615 °24′36″ 和36°59′96″化成用°做单位的 急谢谢
- 7用(2张A4纸,剪刀,胶水,)制作一个桥,桥长20cm,宽5cm,高4cm,应如何制作才能使桥承受质量最大?
- 81、质量为10g的某种金属,从100°C的沸水中取出,迅速放入质量为30g、初温为25°C的冷水中,测得混合后的末温是30°C,不计热损失,求
- 9一项工程,师傅二分之一小时完成,徒弟三分之一小时完成.如果师徒合作,则需()小时完成,师徒各完成多少
- 10翻译:上周我和哥哥大吵了一架. I __ __ __ __ with my brother last week.
热门考点