<?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/"
	>

<channel>
	<title>sayı tahmin oyunu &#8211; Sezer YAMAN</title>
	<atom:link href="https://sezeryaman.com/etiket/sayi-tahmin-oyunu/feed/" rel="self" type="application/rss+xml" />
	<link>https://sezeryaman.com</link>
	<description>Yazılım Geliştirici</description>
	<lastBuildDate>Wed, 31 May 2023 00:40:54 +0000</lastBuildDate>
	<language>tr</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>C# Sayı tahmin oyunu</title>
		<link>https://sezeryaman.com/c-sayi-tahmin-oyunu/</link>
					<comments>https://sezeryaman.com/c-sayi-tahmin-oyunu/#respond</comments>
		
		<dc:creator><![CDATA[szrymn]]></dc:creator>
		<pubDate>Tue, 05 Jun 2018 13:10:27 +0000</pubDate>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[sayı tahmin oyunu]]></category>
		<guid isPermaLink="false">https://sezeryaman.com/?p=73</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[<div class="wp-block-syntaxhighlighter-code "><pre class="brush: csharp; title: ; notranslate">
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string&#x5B;] args)
        {
            Random rastgele = new Random();
            int sayi = rastgele.Next(100);
            int sayac = 1;
            while (true)
            {
                Console.WriteLine(&quot;Tahmin girin: &quot;);
                int tahmin = Convert.ToInt32(Console.ReadLine());

                if (tahmin &gt; sayi)
                {
                    Console.WriteLine(&quot;Tahminin büyük&quot;);
                }
                else if (tahmin &lt; sayi)
                {
                    Console.WriteLine(&quot;Tahmin küçük&quot;);
                }
                else
                {
                    Console.WriteLine(&quot;Tebrikler, {0} tahminde bildin.&quot;, sayac);
                    break;
                }
                sayac++;
            }
        }
    }
}

</pre></div>]]></content:encoded>
					
					<wfw:commentRss>https://sezeryaman.com/c-sayi-tahmin-oyunu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
