解题思路: 遍历大于二的整数满足条件则输出
注意事项: 变量的有效范围!!(被困二十分钟)
参考代码:
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
while (scanner.hasNext()) {
int a = scanner.nextInt();
int b = scanner.nextInt();
int c = scanner.nextInt();
boolean go = true;
while(go){
int x=0;
for(int i=2;i>0;i++){
int a0=a%i;
int b0=b%i;
int c0=c%i;
x = i;
if(a0==b0&&b0==c0){
go = false;
break;
}
else{
continue;
}
}
System.out.println(x);
}
}
}
}
0.0分
0 人评分
C语言训练-求PI* (C语言代码)浏览:638 |
printf基础练习2 (C语言代码)浏览:796 |
DNA (C语言描述,蓝桥杯)浏览:1653 |
循环入门练习6 (C语言代码)浏览:1058 |
生日日数 (C语言代码)浏览:1574 |
C语言程序设计教程(第三版)课后习题9.10 (C语言代码)浏览:660 |
【回文数(二)】 (C语言代码)浏览:729 |
C语言训练-百钱百鸡问题 (C语言代码)浏览:665 |
A+B for Input-Output Practice (IV) (C++代码)浏览:543 |
单词替换浏览:1211 |