求解啊,拜托大神了
3个回答
展开全部
本质就是求最小公倍数嘛。兄猜型文案真兆猛好羡猜
import java.util.Scanner;
public class abc {
public static void main(String[] args){
@SuppressWarnings("resource")
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
int c = sc.nextInt();
new Num().cNum(a, b, c);
}
}
class Num{
void cNum(int a,int b, int c){
boolean bl = true;
int num=1;
while(bl){
if(num%a==0 && num%b==0 && num%c==0){
System.out.println(num);
return;
}
else{
num++;
}
}
}
}
import java.util.Scanner;
public class abc {
public static void main(String[] args){
@SuppressWarnings("resource")
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
int c = sc.nextInt();
new Num().cNum(a, b, c);
}
}
class Num{
void cNum(int a,int b, int c){
boolean bl = true;
int num=1;
while(bl){
if(num%a==0 && num%b==0 && num%c==0){
System.out.println(num);
return;
}
else{
num++;
}
}
}
}
展开全部
1 0.75; 3; 300%
2 27
3 2:5; 0.4
4 4:5
5 (2/6):(5/15)
6 2; 8
7 1/31; 30/31
8 反
9 正
10 4:10=6:15
11 4:3
12 反
13 8
1 对
2 错(没有等底面积并卖并等配雹高)
3 对
4 对
5 错(可能不成比例绝迹)
6 对
1 选B
2 选B
2 27
3 2:5; 0.4
4 4:5
5 (2/6):(5/15)
6 2; 8
7 1/31; 30/31
8 反
9 正
10 4:10=6:15
11 4:3
12 反
13 8
1 对
2 错(没有等底面积并卖并等配雹高)
3 对
4 对
5 错(可能不成比例绝迹)
6 对
1 选B
2 选B
追问
什么
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public class Test {
public static void main(String[] args) {
count(3, 1, 1);
}
// 原理: 求三个数的最小公庆则倍誉携棚数
public static void count(int a, int b, int c) {
int result = 0;
int[] arrays = {a, b, c};//需要计算的数组
for (int i = 1; i < Integer.MAX_VALUE; i++) {
int num = arrays.length;
while(num > 0) {
int count = 0;
for(int array : arrays){
if(i%array!=0){
break;
}else{
count ++;
}
}
if(count==arrays.length){
result = i;
break;
}
num --;
}
if(result > 0){
System.out.println("每袋核隐举桃的数量为:"+result);
break;
}
}
}
}
public static void main(String[] args) {
count(3, 1, 1);
}
// 原理: 求三个数的最小公庆则倍誉携棚数
public static void count(int a, int b, int c) {
int result = 0;
int[] arrays = {a, b, c};//需要计算的数组
for (int i = 1; i < Integer.MAX_VALUE; i++) {
int num = arrays.length;
while(num > 0) {
int count = 0;
for(int array : arrays){
if(i%array!=0){
break;
}else{
count ++;
}
}
if(count==arrays.length){
result = i;
break;
}
num --;
}
if(result > 0){
System.out.println("每袋核隐举桃的数量为:"+result);
break;
}
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询