...要求在一行中输入,用空格隔开 求这两个数字的最小公倍数
发布网友
发布时间:2024-05-14 05:19
我来回答
共4个回答
热心网友
时间:2024-05-14 05:27
import java.util.Scanner;
public class Four {
public static void main(String[] args) {
Scanner sca=new Scanner(System.in);
while(true){
System.out.println("输入两个1-1000之间的数,用空格隔开/或者输入退出标识poj");
String num=sca.nextLine();//输入数字 或者退出标志
num=num.toLowerCase();//将输入的字符串变成小写,当输入的是poj时程序结束
if(num.equals("poj")){
break;
}
String[] strs=num.split(" ");
//将输入的字符串切割,获得空格前后的数字
int a=Integer.parseInt(strs[0]);
int b=Integer.parseInt(strs[1]);
int i=0;
while(true){
i++;
if(i%a==0&&i%b==0){
break;
}
}
System.out.println(a+","+b+"的最小公倍数是:"+i);
}
}
}
热心网友
时间:2024-05-14 05:28
经测试,是正确的。也可以用公式:a+b/2(网上查的)不知道管不管用
热心网友
时间:2024-05-14 05:21
1.你的break;语句只能跳出一层while(true)循环,你的最外层循环是死循环,方法没有结束,除非输入不正确用Exception退出方法.
2.按照格式输入,方法执行后的结果没错,不按格式输入时产生的Exception没有捕捉.不清楚你说的出错是什么意思,加上try,catch自己查吧
热心网友
时间:2024-05-14 05:28
我测试了下,没错,不知道你说的哪里有错?把错误信息贴出来,或写清楚。