標題:
質數
[打印本頁]
作者:
tonyh
時間:
2021-8-17 17:02
標題:
質數
本帖最後由 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();
}
}
}
}
}
複製代碼
作者:
吳孟修
時間:
2021-8-17 18:02
此帖僅作者可見
作者:
吳孟書
時間:
2021-8-17 18:16
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2