Board logo

標題: 質數 [打印本頁]

作者: tonyh    時間: 2021-8-17 17:02     標題: 質數

本帖最後由 tonyh 於 2021-8-17 18:10 編輯

  1. public class Ch01 {

  2.         public static void main(String[] args) {
  3.                 int count=1;
  4.                 System.out.println("1000以內的質數有:");
  5.                 for(int i=2; i<=1000; i++)
  6.                 {
  7.                         if(i==2)
  8.                         {
  9.                                 System.out.print(i+"\t");
  10.                         }else
  11.                         {
  12.                                 int sum=0;
  13.                                 for(int j=2; j<=i-1; j++)
  14.                                 {
  15.                                         if(i%j==0)
  16.                                         {
  17.                                                 sum++;
  18.                                                 break;
  19.                                         }
  20.                                 }
  21.                                 if(sum==0)
  22.                                 {
  23.                                         count++;
  24.                                         System.out.print(i+"\t");
  25.                                         if(count%10==0)
  26.                                                 System.out.println();
  27.                                 }
  28.                         }       
  29.                 }
  30.         }
  31. }
複製代碼

作者: 吳孟修    時間: 2021-8-17 18:02

此帖僅作者可見
作者: 吳孟書    時間: 2021-8-17 18:16

此帖僅作者可見




歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2