<span style="font-size:14px;">/*
*功能:任意输入两个正整数,后面一个大于前面一个,编写算法打印输出该两个整数之间范围内所有质素。
* 时间:2016/11/9
*/
public class Test {
public static int a;
public static int b;
public static void main(String[] args) {
// 请任意输入两个数字
Scanner scanner = new Scanner(System.in);
System.out.println("请输入第一个数:");
a = scanner.nextInt();
System.out.println("请输入第二个数:");
b = scanner.nextInt();
age(a, b);
}
public static void age(int a , int b) {
int age[] = {a,b};
int swap;
// 冒泡排序法
for (int i = 0; i < age.length; i++) {
for (int j = 0; j < age.length - i - 1; j++) {
if (age[j] > age[j + 1]) {
swap = age[j];
age[j] = age[j + 1];
age[j + 1] = swap;
}
}
}
// 打印测试结果
System.out.print("小到大排序方式为:");
for (int i = 0; i < age.length; i++) {
// 最后一个符号
if (i == age.length - 1) {
System.out.print(+age[i]);
} else {
System.out.print(+age[i] + "<");
}
}
System.out.println();
//打印素数
for (int i = a; i <= b; i++) {
if (SuShu(i)) {
System.out.print(i + ", ");
}
}
}
/*
* 判断是否为素数
*/
public static boolean SuShu(int num) {
for (int i = 2; i <= num / 2; i++) {// num只需要除num/2前面的每个整数
if (num % i == 0) {// 不是素数就返回false
return false;
}
}
// 否则就是素数,返回true
return true;
}
}
</span>