本帖最後由 tonyh 於 2021-8-17 18:10 編輯
- public class Ch01 {
- public static void main(String[] args) {
- int count=1;
- System.out.println("1000以內的質數有:");
- for(int i=2; i<=1000; i++)
- {
- if(i==2)
- {
- System.out.print(i+"\t");
- }else
- {
- int sum=0;
- for(int j=2; j<=i-1; j++)
- {
- if(i%j==0)
- {
- sum++;
- break;
- }
- }
- if(sum==0)
- {
- count++;
- System.out.print(i+"\t");
- if(count%10==0)
- System.out.println();
- }
- }
- }
- }
- }
複製代碼 |