<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<oembed>
  <author_name>stackprobe</author_name>
  <author_url>https://blog.hatena.ne.jp/stackprobe/</author_url>
  <blog_title>SP_memo</blog_title>
  <blog_url>https://stackprobe.hateblo.jp/</blog_url>
  <categories>
  </categories>
  <description>t0001.c 愚直に素数を列挙する。 範囲 [2, INT_MAX) #include &lt;stdio.h&gt; #include &lt;limits.h&gt; int main() { int c; int d; for(c = 2; c &lt; INT_MAX; c++) { for(d = 2; d &lt; c; d++) if(c % d == 0) goto next; printf(&quot;%d\n&quot;, c); next:; } } t0002.c 愚直に素数を列挙する。その２ (t0001.c + 効率化) 範囲 [2, INT_MAX) #include &lt;stdio.h&gt; #include &lt;limi…</description>
  <height>190</height>
  <html>&lt;iframe src=&quot;https://hatenablog-parts.com/embed?url=https%3A%2F%2Fstackprobe.hateblo.jp%2Fentry%2F2019%2F10%2F16%2F152701&quot; title=&quot;よくある素数列挙サンプルコード集 - SP_memo&quot; class=&quot;embed-card embed-blogcard&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;display: block; width: 100%; height: 190px; max-width: 500px; margin: 10px 0px;&quot;&gt;&lt;/iframe&gt;</html>
  <image_url></image_url>
  <provider_name>Hatena Blog</provider_name>
  <provider_url>https://hatena.blog</provider_url>
  <published>2019-10-16 15:27:01</published>
  <title>よくある素数列挙サンプルコード集</title>
  <type>rich</type>
  <url>https://stackprobe.hateblo.jp/entry/2019/10/16/152701</url>
  <version>1.0</version>
  <width>100%</width>
</oembed>
