<?xml version="1.0" encoding="iso-8859-9" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Clomosy | Forum : Do While Döngüsü</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Clomosy ile de&#287;i&#351;ken kullan&#305;m&#305; : Do While Döngüsü]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 15 Apr 2026 02:58:23 +0000</pubDate>
  <lastBuildDate>Mon, 09 Feb 2026 17:13:49 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.07</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forum.clomosy.com.tr/RSS_post_feed.asp?TID=1272</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Clomosy | Forum]]></title>
   <url>https://forum.clomosy.com.tr/forum_images/logo.png</url>
   <link>https://forum.clomosy.com.tr/</link>
  </image>
  <item>
   <title><![CDATA[Do While Döngüsü : Do While yerine Repeat Until deneyebilirsin...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1272&amp;PID=2832#2832</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=344">M-Guney</a><br /><strong>Konu:</strong> 1272<br /><strong>Gönderim Zamanı:</strong> 09&nbsp;Şubat&nbsp;2026 Saat 17:13<br /><br />Do While yerine Repeat Until deneyebilirsin neredeyse aynı şekilde çalışmaktadır.<br><div>var</div><div>i: Integer;</div><div>{</div><div>&nbsp; i=1;</div><div>&nbsp; Repeat</div><div>&nbsp; {</div><div>&nbsp; &nbsp; ShowMessage(i);</div><div>&nbsp; &nbsp; Inc(i);</div><div>&nbsp; }</div><div>&nbsp; until(i&gt;5);</div><div>}<br><br>//Örnek kod 2:<br><div>var</div><div>sayi: Float;</div><div>{</div><div>&nbsp; repeat</div><div>&nbsp; {</div><div>&nbsp; &nbsp; sayi=Random()*70;</div><div>&nbsp; &nbsp; ShowMessage('Rastgele alınan değer istenilen aralıktadır.'+IntToStr(sayi));</div><div>&nbsp; }</div><div>&nbsp; until (sayi&gt;50);</div><div>&nbsp; ShowMessage('Döngüden çıkıldı. Sayı: '+IntToStr(sayi));</div><div>}</div></div><a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015"</a> integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon="{&quot;version&quot;:&quot;2024.11.0&quot;,&quot;token&quot;:&quot;439455f3e46c40b98dbd42a2f1a954d8&quot;,&quot;r&quot;:1,&quot;server_timing&quot;:{&quot;name&quot;:{&quot;cfCacheStatus&quot;:true,&quot;cfEdge&quot;:true,&quot;cfExtPri&quot;:true,&quot;cfL4&quot;:true,&quot;cfOrigin&quot;:true,&quot;cfSpeedBrain&quot;:true},&quot;location_startswith&quot;:null}}" crossorigin="anonymous">]]>
   </description>
   <pubDate>Mon, 09 Feb 2026 17:13:49 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1272&amp;PID=2832#2832</guid>
  </item> 
  <item>
   <title><![CDATA[Do While Döngüsü : Udemy kursunda 19. videoyu izlerken...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1272&amp;PID=2831#2831</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=371">Melih</a><br /><strong>Konu:</strong> 1272<br /><strong>Gönderim Zamanı:</strong> 09&nbsp;Şubat&nbsp;2026 Saat 16:50<br /><br />Udemy kursunda 19. videoyu izlerken do while döngüsü kodlarını denemeye çalıştım fakat kod örneklerini denerken hata aldım<br><br>Videodan örnek kod 1:<br><br><div>var</div><div>i: Integer;</div><div>{</div><div>&nbsp; i=1;</div><div>&nbsp; do</div><div>&nbsp; {</div><div>&nbsp; &nbsp; ShowMessage(i);</div><div>&nbsp; &nbsp; Inc(i);</div><div>&nbsp; }</div><div>&nbsp; while(i&gt;5)</div><div>}<br><br>Hata:<br><br><div>Unit Main: Syntax error.</div><div><br></div><div>Source position: 5,4</div><div>Clomosy Build : 20260114.140736</div><br>Videodan örnek kod 2:<br><br><div>var</div><div>sayi: Float;</div><div>{</div><div>&nbsp; do</div><div>&nbsp; sayi=Random()*70;</div><div>&nbsp; ShowMessage('Rastgele alınan değer istenilen aralıktadır.'+IntToStr(sayi));</div><div>&nbsp; while (sayi&gt;50);</div><div>&nbsp; ShowMessage('Döngüden çıkıldı. Sayı: '+IntToStr(sayi));</div><div>}<br><br>Hata:<br><div>Unit Main: Syntax error.</div><div><br></div><div>Source position: 4,4</div><div>Clomosy Build : 20260114.140736<br><br>Dökümantasyonda do while ile ilgili örnek bir kod var mı diye baktım fakat bulamadım. (<a href="https://www.docs.clomosy.com/Loops" target="_blank" rel="nofollow">https://www.docs.clomosy.com/Loops</a>)</div></div></div><a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015"</a> integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon="{&quot;version&quot;:&quot;2024.11.0&quot;,&quot;token&quot;:&quot;439455f3e46c40b98dbd42a2f1a954d8&quot;,&quot;r&quot;:1,&quot;server_timing&quot;:{&quot;name&quot;:{&quot;cfCacheStatus&quot;:true,&quot;cfEdge&quot;:true,&quot;cfExtPri&quot;:true,&quot;cfL4&quot;:true,&quot;cfOrigin&quot;:true,&quot;cfSpeedBrain&quot;:true},&quot;location_startswith&quot;:null}}" crossorigin="anonymous">]]>
   </description>
   <pubDate>Mon, 09 Feb 2026 16:50:15 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1272&amp;PID=2831#2831</guid>
  </item> 
 </channel>
</rss>