<?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="http://syndication.webwizguide.com/rss_namespace/">
 <channel>
  <title>Datakent Forum : Tek mi Çift mi ?</title>
  <link>http://forum.datakent.com/</link>
  <description>XML içerik linki; Datakent Forum : C# &amp; ASP.NET : Tek mi Çift mi ?</description>
  <pubDate>Tue, 21 Apr 2026 11:22:24 +0000</pubDate>
  <lastBuildDate>Fri, 28 Nov 2008 16:48:09 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 9.54</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.datakent.com/RSS_post_feed.asp?TID=1602</WebWizForums:feedURL>
  <image>
   <title>Datakent Forum</title>
   <url>http://forum.datakent.com/forum_images/datakent.com_forums.png</url>
   <link>http://forum.datakent.com/</link>
  </image>
  <item>
   <title>Tek mi Çift mi ? : e benden de C# kar&#351;&#305;l&#305;&#287;&#305; olsun;...</title>
   <link>http://forum.datakent.com/forum_posts.asp?TID=1602&amp;PID=3428#3428</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://forum.datakent.com/member_profile.asp?PF=1" rel="nofollow">murat turan</a><br /><strong>Konu:</strong> 1602<br /><strong>Gönderim Zamanı:</strong> 28.Kasim.2008 Saat 16:48<br /><br />e benden de C# karşılığı olsun; <DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; private void button1_Click(object sender, EventArgs e)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int sayi = 0;</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; try<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sayi = Convert.ToInt32(textBox1.Text);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; catch<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MessageBox.Show("geçerli bir değer giriniz!");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (sayi % 2 == 0)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MessageBox.Show("Sayı Çift");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else MessageBox.Show("Sayı Tek");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</DIV><span style="font-size:10px"><br /><br />Düzenleyen murat turan - 28.Kasim.2008 Saat 16:48</span>]]>
   </description>
   <pubDate>Fri, 28 Nov 2008 16:48:09 +0000</pubDate>
   <guid isPermaLink="true">http://forum.datakent.com/forum_posts.asp?TID=1602&amp;PID=3428#3428</guid>
  </item> 
  <item>
   <title>Tek mi Çift mi ? : Merhaba ; Problem : say&#305;n&#305;n Tek...</title>
   <link>http://forum.datakent.com/forum_posts.asp?TID=1602&amp;PID=3426#3426</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://forum.datakent.com/member_profile.asp?PF=3122" rel="nofollow">turknetyazilim</a><br /><strong>Konu:</strong> 1602<br /><strong>Gönderim Zamanı:</strong> 28.Kasim.2008 Saat 11:19<br /><br />Merhaba ;<DIV><strong>Problem</strong> : sayının Tek mi Çift mi Olduğunu nasıl anlarım (Tabi Programca...)?</DIV><DIV><strong>Çözüm</strong>&nbsp;&nbsp; : Bir Sayının 2 ile Bölümünden Kalan 0 ise&nbsp;O sayı&nbsp;Çifttir.Yine 2 ile bölümünden Kalan 1 ise O sayı Sıfırdır.Bölümünden Kalan İşinide Matematikdeki Modüler aritmetikten...</DIV><DIV>&nbsp;</DIV><DIV>Programalama da da Bu işi <strong>MOD</strong> Fonksiyonu Yapıyor...</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>Mod Kullanımı : <strong>a mod b</strong></DIV><DIV><strong>a (Bölünen)</strong></DIV><DIV><strong>b (bölen)</strong></DIV><DIV><FONT color=#0000ff size=2><P>Private</FONT><FONT size=2> </FONT><FONT color=#0000ff size=2>Sub</FONT><FONT size=2> Button1_Click(</FONT><FONT color=#0000ff size=2>ByVal</FONT><FONT size=2> sender </FONT><FONT color=#0000ff size=2>As</FONT><FONT size=2> System.Object, </FONT><FONT color=#0000ff size=2>ByVal</FONT><FONT size=2> e </FONT><FONT color=#0000ff size=2>As</FONT><FONT size=2> System.EventArgs) </FONT><FONT color=#0000ff size=2>Handles</FONT><FONT size=2> Button1.Click</P><DIV></FONT><FONT color=#0000ff size=2>If</FONT><FONT size=2> (TextBox1.Text </FONT><FONT color=#0000ff size=2>Mod</FONT><FONT size=2> 2) = 0 </FONT><FONT color=#0000ff size=2>Then</DIV></FONT><FONT size=2><P>Label1.Text = </FONT><FONT color=#800000 size=2>"Sayı Çift"</P></FONT><FONT size=2><P></FONT><FONT color=#0000ff size=2>ElseIf</FONT><FONT size=2> (TextBox1.Text </FONT><FONT color=#0000ff size=2>Mod</FONT><FONT size=2> 2) = 1 </FONT><FONT color=#0000ff size=2>Then</P></FONT><FONT size=2><P>Label1.Text = </FONT><FONT color=#800000 size=2>"Sayı Tek"</P><DIV></FONT><FONT color=#0000ff size=2>End</FONT><FONT size=2> </FONT><FONT color=#0000ff size=2>If</DIV><DIV></FONT><FONT color=#0000ff size=2>End</FONT><FONT size=2> </FONT><FONT color=#0000ff size=2>Sub</FONT></DIV><DIV><FONT color=#0000ff size=2>Uygulama : <FONT color=#000000><a href="http://rapidshare.com/files/168161686/Tekmi_Ciftmi.rar.html" target="_blank">http://rapidshare.com/files/168161686/Tekmi_Ciftmi.rar.html</A></FONT></FONT></DIV><DIV><FONT color=#0000ff size=2><FONT color=#000000>Kolay Gelsin</FONT></FONT></DIV><DIV><FONT color=#0000ff size=2><FONT color=#000000>İyi Çalışmalar</FONT></DIV></FONT></DIV>]]>
   </description>
   <pubDate>Fri, 28 Nov 2008 11:19:25 +0000</pubDate>
   <guid isPermaLink="true">http://forum.datakent.com/forum_posts.asp?TID=1602&amp;PID=3426#3426</guid>
  </item> 
 </channel>
</rss>