用JAVA编写一个判断素数的程序

发布网友 发布时间:2022-04-24 11:25

我来回答

5个回答

热心网友 时间:2023-10-11 03:25

import java.util.*;

public class Test {

public static void main (String[] args) {

int n,i;
System.out.print("请随便输入一个数n");

Scanner sc =new Scanner(System.in);
int n=sc.nextInt();

for(i=n-1;i>1;i--)
if(n%i==0)
break;
if(n==i)
System.out.println(n+"是素数");

}
}

这个应该比较简单吧!好理解吧!
楼主要到API文档中好好查一下 Scanner 这个函数的使用方法\
不紧可以输入一个整数...还可以输入一个字符串..呵 呵 ..
很好用的噢!!

祝君早日成功!

热心网友 时间:2023-10-11 03:26

public static void main(String[] args) {
int n, i;
System.out.print("请随便输入一个数n");
Scanner sc = new Scanner(System.in);
n = sc.nextInt();

for (i = n - 1; i > 1; i--) {
if (n % i == 0) {
System.out.println(n + "不是素数");
return;
}
}
System.out.println(n + "是素数");
}

热心网友 时间:2023-10-11 03:26

boolean f = true;
for(int j=2;j<i;j++){
if(i%j==0){
f = false;
break;
}
}
if(!f){
continue;
}
System.out.print(" "+i);

至于输入数?不知道你有没有注意过 main 函数里的 (String[] args)
名字为args String类型的树组 可以帮你输入

热心网友 时间:2023-10-11 03:27

先不说输入的问题,你的代码并没有实现判断素数。

热心网友 时间:2023-10-11 03:28

package sushu;
import javax.swing.JOptionPane;

public class NewClass {
int a;
int s;
String input;
void inputNumber()
{input=JOptionPane.showInputDialog(null,"输入你要判断的数字");
a=Integer.parseInt(input);
}
void judgeNumber()
{for(s=1;s<=a;s++)
{if(a%s==0)
JOptionPane.showMessageDialog(null, "不是素数");
break;}}

}
public class Sushu {

public static void main(String[] args) {
NewClass k=new NewClass();
k.inputNumber();
k.judgeNumber();
// TODO code application logic here
}

}
这位仁兄,你看这样行吗?

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com