判断一个数是不是质数

非递归实现:

int n = 201;
int i = 2;

boolean y = false;
while (i < n) {
if (0 == n % i) {
y = true;
break;
} else {
i++;
}
}
if (y == true) {
System.out.println(n + " - 不是质数!");
} else {
System.out.println(n + " - 是质数!");
}

非递归实现:

public static void main(String[] args) {
int n = 97;

boolean c = panDuan(n);
if(false == c) {
System.out.println(n + " - 不是质数!");
} else {
System.out.println(n + " - 是质数!");
}

}
public static boolean panDuan(long n) { // 判断输入的参数x是否为质数
for (int i = 2; i < n; i++) {
if (n % i == 0) {// 假如 i 能整除x
return false;// 不是质数,返回false
}
}
return true;// 假如那个范围的 i 都整除不了x,是质数,返回true

}

递归实现:

public static void main(String[] args) {
int x = 81;
int a = 2;

boolean c = isZhishu(x, a);
if(false == c){
System.out.println(x + " - 不是质数!");
} else {
System.out.println(x + " - 是质数!");
}
}
public static boolean isZhishu(int x,int a)
{
if (a < x) {
if (x % a == 0)
return false;
else
return isZhishu(x,a+1);
}
else
return true;

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值