导读 您好,现在瑶瑶来为大家解答以上的问题。java源代码最全的网站,java源代码相信很多小伙伴还不知道,现在让我们一起来看看吧!1、您好,写了

您好,现在瑶瑶来为大家解答以上的问题。java源代码最全的网站,java源代码相信很多小伙伴还不知道,现在让我们一起来看看吧!

1、您好,写了一个程序,求素数。

2、并将所有素数存到ArrayList sushu中:1234567891011121314151617181920212223242526import java.util.ArrayList;import java.util.zip.Inflater; public class sushu {    public static void main(String[] args) {        int n=50,b=0;        float a=0,c=0;                 ArrayList sushu=new ArrayList();        for(int i=3;i<=n;i++){            int state=0;            for(int j=2;j<(i/2+1);j++){                a=(float)i/(float)j;                //System.out.println(a);                b=(int)a;                //System.out.println(a-b);                 c=a-b;                //System.out.println(c);                if(c==0){state=1;break;}            }            if(state==0)sushu.add(i);        }        System.out.println(sushu);    }} 输出结果为:[3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47]。

本文就为大家分享到这里,希望小伙伴们会喜欢。