<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Koddaki Döngülerin Ne İçin Yazıldığını Keşfediyorum by Yazılım Teknolojileri</title>
      <link>https://padlet.com/deneyapcgrubu/sjtrvd2g6r4v269c</link>
      <description>Bir göz kırpması ve gülümsemeyle yapıldı</description>
      <language>en-us</language>
      <pubDate>2021-06-19 05:40:18 UTC</pubDate>
      <lastBuildDate>2025-09-25 17:15:55 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://padlet.net/icons/png/1f929.png</url>
      </image>
      <item>
         <title></title>
         <author>deneyapcgrubu</author>
         <link>https://padlet.com/deneyapcgrubu/sjtrvd2g6r4v269c/wish/1615264809</link>
         <description><![CDATA[<div>2) for(int sayi=10;sayi&gt;=0;sayi--)</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-06-19 05:42:33 UTC</pubDate>
         <guid>https://padlet.com/deneyapcgrubu/sjtrvd2g6r4v269c/wish/1615264809</guid>
      </item>
      <item>
         <title></title>
         <author>deneyapcgrubu</author>
         <link>https://padlet.com/deneyapcgrubu/sjtrvd2g6r4v269c/wish/1615264890</link>
         <description><![CDATA[<div>3) for(int sayi=10;sayi&gt;=0;sayi-=2)</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-06-19 05:42:45 UTC</pubDate>
         <guid>https://padlet.com/deneyapcgrubu/sjtrvd2g6r4v269c/wish/1615264890</guid>
      </item>
      <item>
         <title></title>
         <author>deneyapcgrubu</author>
         <link>https://padlet.com/deneyapcgrubu/sjtrvd2g6r4v269c/wish/1615264964</link>
         <description><![CDATA[<div>4) for(int i=15;i&gt;=0;i-=3)</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-06-19 05:42:55 UTC</pubDate>
         <guid>https://padlet.com/deneyapcgrubu/sjtrvd2g6r4v269c/wish/1615264964</guid>
      </item>
      <item>
         <title>Kodları CodeBlocks&#39;a yazarak çıktılarını gözlemleyelim!</title>
         <author>deneyapcgrubu</author>
         <link>https://padlet.com/deneyapcgrubu/sjtrvd2g6r4v269c/wish/1615267057</link>
         <description><![CDATA[<div>#include &lt;iostream&gt;<br>using namespace std;</div><div>int main()</div><div>{</div><div>&nbsp; &nbsp; for(int i=0;i&lt;10;i++)<br>&nbsp; &nbsp; cout &lt;&lt; "DENEYAP" &lt;&lt; endl;<br>&nbsp; &nbsp; return 0;</div><div>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-06-19 05:47:51 UTC</pubDate>
         <guid>https://padlet.com/deneyapcgrubu/sjtrvd2g6r4v269c/wish/1615267057</guid>
      </item>
      <item>
         <title></title>
         <author>deneyapcgrubu</author>
         <link>https://padlet.com/deneyapcgrubu/sjtrvd2g6r4v269c/wish/1615267428</link>
         <description><![CDATA[<div>int sayi = 1;<br>while(sayi&lt;100)</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; sayi &lt;&lt;endl;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; sayi ++;</div><div>&nbsp; &nbsp; }</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-06-19 05:48:52 UTC</pubDate>
         <guid>https://padlet.com/deneyapcgrubu/sjtrvd2g6r4v269c/wish/1615267428</guid>
      </item>
      <item>
         <title></title>
         <author>deneyapcgrubu</author>
         <link>https://padlet.com/deneyapcgrubu/sjtrvd2g6r4v269c/wish/1615268431</link>
         <description><![CDATA[<div>#include &lt;iostream&gt;</div><div>using namespace std;</div><div>int main()</div><div>{</div><div>&nbsp; &nbsp; for(int i=1; i&lt;10; i++)</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; i &lt;&lt;endl;</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; return 0;</div><div>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-06-19 05:51:22 UTC</pubDate>
         <guid>https://padlet.com/deneyapcgrubu/sjtrvd2g6r4v269c/wish/1615268431</guid>
      </item>
      <item>
         <title></title>
         <author>deneyapcgrubu</author>
         <link>https://padlet.com/deneyapcgrubu/sjtrvd2g6r4v269c/wish/1615268801</link>
         <description><![CDATA[<div>int i;</div><div>&nbsp; &nbsp; for(i=1;i&lt;20;i++)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; if(i%2==1)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; i &lt;&lt; endl;</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-06-19 05:52:18 UTC</pubDate>
         <guid>https://padlet.com/deneyapcgrubu/sjtrvd2g6r4v269c/wish/1615268801</guid>
      </item>
      <item>
         <title></title>
         <author>deneyapcgrubu</author>
         <link>https://padlet.com/deneyapcgrubu/sjtrvd2g6r4v269c/wish/1615269156</link>
         <description><![CDATA[<div>&nbsp;int i=1;</div><div>&nbsp; &nbsp; while(i&lt;20)</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; if(i%2==1)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; i &lt;&lt; endl;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; i++;</div><div>&nbsp; &nbsp; }</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-06-19 05:53:04 UTC</pubDate>
         <guid>https://padlet.com/deneyapcgrubu/sjtrvd2g6r4v269c/wish/1615269156</guid>
      </item>
      <item>
         <title></title>
         <author>deneyapcgrubu</author>
         <link>https://padlet.com/deneyapcgrubu/sjtrvd2g6r4v269c/wish/1615269420</link>
         <description><![CDATA[<div>int i=1;</div><div>&nbsp; &nbsp; do</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; if(i%2==1)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; i &lt;&lt; endl;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; i++;</div><div>&nbsp; &nbsp; }while(i&lt;20);</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-06-19 05:53:30 UTC</pubDate>
         <guid>https://padlet.com/deneyapcgrubu/sjtrvd2g6r4v269c/wish/1615269420</guid>
      </item>
      <item>
         <title>Tahmin Etmeye Çalışalım!</title>
         <author>deneyapcgrubu</author>
         <link>https://padlet.com/deneyapcgrubu/sjtrvd2g6r4v269c/wish/1615660739</link>
         <description><![CDATA[<div>1) for(int sayi=0;sayi&lt;10;sayi++)</div>]]></description>
         <pubDate>2021-06-19 19:30:50 UTC</pubDate>
         <guid>https://padlet.com/deneyapcgrubu/sjtrvd2g6r4v269c/wish/1615660739</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/deneyapcgrubu/sjtrvd2g6r4v269c/wish/1616101570</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet.com/deneyapcgrubu" />
         <pubDate>2021-06-20 12:02:20 UTC</pubDate>
         <guid>https://padlet.com/deneyapcgrubu/sjtrvd2g6r4v269c/wish/1616101570</guid>
      </item>
   </channel>
</rss>
