<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Magacc1's Weblog</title>
	<atom:link href="http://magacc1.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://magacc1.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Fri, 04 Jul 2008 00:41:47 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>es</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='magacc1.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/221bf0cc954ac8466e1a7aa643dc80c1?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Magacc1's Weblog</title>
		<link>http://magacc1.wordpress.com</link>
	</image>
			<item>
		<title>Recursividad</title>
		<link>http://magacc1.wordpress.com/2008/04/08/recursividad-3/</link>
		<comments>http://magacc1.wordpress.com/2008/04/08/recursividad-3/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 00:53:30 +0000</pubDate>
		<dc:creator>magacc1</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[eccutpl]]></category>
		<category><![CDATA[Estructura de Datos]]></category>
		<category><![CDATA[fibonacci]]></category>
		<category><![CDATA[recursividad]]></category>
		<category><![CDATA[utpl]]></category>

		<guid isPermaLink="false">http://magacc1.wordpress.com/?p=11</guid>
		<description><![CDATA[//Serie de fibonacci con recursividad
#include&#60;iostream.h&#62;
#include&#60;conio.h&#62;
void  func1(int n);
int x,f=0,b=1,c=1;
void  main()
{
        clrscr();
        cout&#60;&#60;&#8221;\t Ingrese un Numero:  &#8220;;
        cin&#62;&#62;x;
        cout&#60;&#60;&#8221;\n\n&#8221;;
        func1(c);
        getch();
}
void func1(int n)
{
     cout&#60;&#60;&#8221;\t\t&#8221;&#60;&#60;f&#60;&#60;&#8221;\n\n&#8221;;
     b=c;
     c=f;
     f=b+c;
     if(x&#62;1)
    {
         x&#8211;;
         func1(n);
    }
}
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=magacc1.wordpress.com&blog=1809379&post=11&subd=magacc1&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>//Serie de fibonacci con recursividad<br />
#include&lt;iostream.h&gt;<br />
#include&lt;conio.h&gt;</p>
<p>void  func1(int n);</p>
<p>int x,f=0,b=1,c=1;</p>
<p>void  main()<br />
{<br />
        clrscr();<br />
        cout&lt;&lt;&#8221;\t Ingrese un Numero:  &#8220;;<br />
        cin&gt;&gt;x;<br />
        cout&lt;&lt;&#8221;\n\n&#8221;;<br />
        func1(c);<br />
        getch();<br />
}</p>
<p>void func1(int n)<br />
{</p>
<p>     cout&lt;&lt;&#8221;\t\t&#8221;&lt;&lt;f&lt;&lt;&#8221;\n\n&#8221;;<br />
     b=c;<br />
     c=f;<br />
     f=b+c;<br />
     if(x&gt;1)<br />
    {<br />
         x&#8211;;<br />
         func1(n);<br />
    }</p>
<p>}</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/magacc1.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/magacc1.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/magacc1.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/magacc1.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/magacc1.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/magacc1.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/magacc1.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/magacc1.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/magacc1.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/magacc1.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/magacc1.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/magacc1.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=magacc1.wordpress.com&blog=1809379&post=11&subd=magacc1&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://magacc1.wordpress.com/2008/04/08/recursividad-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9dedcc8f7f33ca94d97286235636648?s=96&#38;d=identicon" medium="image">
			<media:title type="html">magacc1</media:title>
		</media:content>
	</item>
		<item>
		<title>Recursividad</title>
		<link>http://magacc1.wordpress.com/2008/04/08/recursividad-2/</link>
		<comments>http://magacc1.wordpress.com/2008/04/08/recursividad-2/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 00:48:38 +0000</pubDate>
		<dc:creator>magacc1</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[eccutpl]]></category>
		<category><![CDATA[Estructura de Datos]]></category>
		<category><![CDATA[fibonacci]]></category>
		<category><![CDATA[recursividad]]></category>
		<category><![CDATA[utpl]]></category>

		<guid isPermaLink="false">http://magacc1.wordpress.com/?p=10</guid>
		<description><![CDATA[//Serie de fibonacci con recursividad
#include&#60;iostream.h&#62;
#include&#60;conio.h&#62;
void func1(int n,int b,int c,int f);
void  main()
{
  clrscr();
  int n;
  func1(5,1,1,0);
 getch();
}
void func1(int n,int b,int c,int f)
{
 cout&#60;&#60;f;
 if(n&#62;1)
 {
  func1((n-1),c,f,(f+c));
        }
}
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=magacc1.wordpress.com&blog=1809379&post=10&subd=magacc1&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>//Serie de fibonacci con recursividad<br />
#include&lt;iostream.h&gt;<br />
#include&lt;conio.h&gt;</p>
<p>void func1(int n,int b,int c,int f);<br />
void  main()<br />
{<br />
  clrscr();<br />
  int n;<br />
  func1(5,1,1,0);</p>
<p> getch();<br />
}</p>
<p>void func1(int n,int b,int c,int f)<br />
{<br />
 cout&lt;&lt;f;<br />
 if(n&gt;1)<br />
 {<br />
  func1((n-1),c,f,(f+c));<br />
        }<br />
}</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/magacc1.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/magacc1.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/magacc1.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/magacc1.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/magacc1.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/magacc1.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/magacc1.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/magacc1.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/magacc1.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/magacc1.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/magacc1.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/magacc1.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=magacc1.wordpress.com&blog=1809379&post=10&subd=magacc1&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://magacc1.wordpress.com/2008/04/08/recursividad-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9dedcc8f7f33ca94d97286235636648?s=96&#38;d=identicon" medium="image">
			<media:title type="html">magacc1</media:title>
		</media:content>
	</item>
		<item>
		<title>Recursividad</title>
		<link>http://magacc1.wordpress.com/2008/04/08/recursividad/</link>
		<comments>http://magacc1.wordpress.com/2008/04/08/recursividad/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 00:43:45 +0000</pubDate>
		<dc:creator>magacc1</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[eccutpl]]></category>
		<category><![CDATA[Estructura de Datos]]></category>
		<category><![CDATA[fibonacci]]></category>
		<category><![CDATA[recursividad]]></category>
		<category><![CDATA[utpl]]></category>

		<guid isPermaLink="false">http://magacc1.wordpress.com/?p=9</guid>
		<description><![CDATA[//Serie de fibonacci con recursividad y dos variables
#include&#60;iostream.h&#62;
#include&#60;conio.h&#62;
#include&#60;dos.h&#62;
void func1(int n,int f,int aux);
void  main()
{
 clrscr();
 int n;
     func1(5,0,1);
 getch();
}
void func1(int n,int f,int aux)
{
 cout&#60;&#60;f;
 if(n&#62;1)
 {
  func1((n-1),(f+aux),f);
 }
}
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=magacc1.wordpress.com&blog=1809379&post=9&subd=magacc1&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>//Serie de fibonacci con recursividad y dos variables<br />
#include&lt;iostream.h&gt;<br />
#include&lt;conio.h&gt;<br />
#include&lt;dos.h&gt;</p>
<p>void func1(int n,int f,int aux);</p>
<p>void  main()<br />
{<br />
 clrscr();<br />
 int n;<br />
     func1(5,0,1);</p>
<p> getch();<br />
}</p>
<p>void func1(int n,int f,int aux)<br />
{<br />
 cout&lt;&lt;f;</p>
<p> if(n&gt;1)<br />
 {</p>
<p>  func1((n-1),(f+aux),f);</p>
<p> }<br />
}</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/magacc1.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/magacc1.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/magacc1.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/magacc1.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/magacc1.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/magacc1.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/magacc1.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/magacc1.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/magacc1.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/magacc1.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/magacc1.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/magacc1.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=magacc1.wordpress.com&blog=1809379&post=9&subd=magacc1&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://magacc1.wordpress.com/2008/04/08/recursividad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9dedcc8f7f33ca94d97286235636648?s=96&#38;d=identicon" medium="image">
			<media:title type="html">magacc1</media:title>
		</media:content>
	</item>
		<item>
		<title>IMAGENES</title>
		<link>http://magacc1.wordpress.com/2007/10/01/fotos/</link>
		<comments>http://magacc1.wordpress.com/2007/10/01/fotos/#comments</comments>
		<pubDate>Mon, 01 Oct 2007 16:35:17 +0000</pubDate>
		<dc:creator>magacc1</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Add new tag]]></category>

		<guid isPermaLink="false">http://magacc1.wordpress.com/2007/10/01/fotos/</guid>
		<description><![CDATA[


Windows Vista


       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=magacc1.wordpress.com&blog=1809379&post=4&subd=magacc1&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div class="mceTemp">
<dl>
<dt><a href="http://magacc1.files.wordpress.com/2008/07/enjoy_music.jpg"><img class="size-medium wp-image-14" src="http://magacc1.files.wordpress.com/2008/07/enjoy_music.jpg?w=240&#038;h=180" alt="Windows Vista" width="240" height="180" /></a></dt>
<dd><strong><em>Windows Vista</em></strong></dd>
</dl>
</div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/magacc1.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/magacc1.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/magacc1.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/magacc1.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/magacc1.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/magacc1.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/magacc1.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/magacc1.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/magacc1.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/magacc1.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/magacc1.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/magacc1.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=magacc1.wordpress.com&blog=1809379&post=4&subd=magacc1&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://magacc1.wordpress.com/2007/10/01/fotos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9dedcc8f7f33ca94d97286235636648?s=96&#38;d=identicon" medium="image">
			<media:title type="html">magacc1</media:title>
		</media:content>

		<media:content url="http://magacc1.files.wordpress.com/2008/07/enjoy_music.jpg?w=240" medium="image">
			<media:title type="html">Windows Vista</media:title>
		</media:content>
	</item>
	</channel>
</rss>