Skip to content.
Skip to navigation
Site Map
Accessibility
Lightweight Language Ring
Sections
Home
Event
Blog
Download
You are here:
Home
→
Blog
→
Comments
→
[PHP] 100までの素数
Personal tools
«
August
2009
»
Su
Mo
Tu
We
Th
Fr
Sa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Recent entries
じゃんけん2.0で優勝したJavaScriptのソースを公開しました
yasuyuki 2006-10-02
第16回GaucheFestを開催します
yasuyuki 2006-10-02
LL Ringの動画配信開始
kahei 2006-09-06
英語BlogにLLRingの記事掲載
kahei 2006-09-05
発表資料を公開しました
yasuyuki 2006-09-02
Recent comments
Re:じゃんけん2.0で優勝したJavaScriptのソースを公開しました
Anonymous User 2009-06-05
Re:じゃんけん2.0で優勝したJavaScriptのソースを公開しました
Anonymous User 2007-07-17
Tシャツサイズアンケート
Anonymous User 2007-01-23
Re:Tシャツサイズアンケート
Tシャツ 2006-12-13
Re:Flickrへイベントの写真を(tag:LLRing)
ats 2006-09-02
Recent trackbacks
[参加者募集/ Python]君ならどう書く? -marge sort-
Fomalhaut of Piscis Australis
2006-09-16
キミならどう書く 2.0 - ROUND 3 -
Haskell はスケるよ
2006-09-08
[プログラミング][言語]LLRing
Onion開発日記
2006-09-04
LLR2006 - Language Update - Perl
404 Blog Not Found
2006-08-31
人生史上最も有意義なカンファレンス
dsler no weblog
2006-08-31
Categories
LL関連書籍・雑誌
(1)
告知
(20)
キミならどう書く2.0
(6)
その他
(5)
ニュース
(13)
Ruby
(3)
Perl
(0)
[PHP] 100までの素数
Posted by
t_komuraの日記
at
2006-06-25 13:18
<?php $max = 100; $arr = range( 2, $max ); $end = sqrt( $max ); for ( $i = 2; $i < $end; ++$i ) { if ( in_array( $i, $arr ) ) { $arr = array_filter( $arr, create_function( '$v', 'return $v % ' . $i . ' || $v === ' . $i . &
Parent entry
キミならどう書く 2.0 - ROUND 1 -
Powered by Plone, the Open Source Content Management System
[PHP] 100までの素数