<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<oembed>
  <author_name>moznion</author_name>
  <author_url>https://blog.hatena.ne.jp/moznion/</author_url>
  <blog_title>その手の平は尻もつかめるさ</blog_title>
  <blog_url>https://moznion.hatenadiary.com/</blog_url>
  <categories>
    <anon>プログラミング</anon>
  </categories>
  <description>・for ループを使った方法 #include &lt;stdio.h&gt; int FibonacciLoop(int untilNum) { int result = 0; int before = 0; for(int i = 0; i &lt;= untilNum; i++) { if(i == 1) { result = 1; } else { result += before; before = result - before; } } return result; } int main() { FibonacciLoop(10); return 0; } ・再帰を使った方法 #include &lt;…</description>
  <height>190</height>
  <html>&lt;iframe src=&quot;https://hatenablog-parts.com/embed?url=https%3A%2F%2Fmoznion.hatenadiary.com%2Fentry%2F20120402%2F1333364188&quot; title=&quot;（ふろく）フィボナッチ数を求めるプログラム - その手の平は尻もつかめるさ&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>2012-04-02 19:56:28</published>
  <title>（ふろく）フィボナッチ数を求めるプログラム</title>
  <type>rich</type>
  <url>https://moznion.hatenadiary.com/entry/20120402/1333364188</url>
  <version>1.0</version>
  <width>100%</width>
</oembed>
