<?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>iki sayının toplamını alma &#8211; Sezer YAMAN</title>
	<atom:link href="https://sezeryaman.com/etiket/iki-sayinin-toplamini-alma/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:42:00 +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# ile iki sayının toplamını alma</title>
		<link>https://sezeryaman.com/c-ile-iki-sayinin-toplamini-alma/</link>
					<comments>https://sezeryaman.com/c-ile-iki-sayinin-toplamini-alma/#respond</comments>
		
		<dc:creator><![CDATA[szrymn]]></dc:creator>
		<pubDate>Tue, 05 Jun 2018 13:09:19 +0000</pubDate>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[C# ile iki sayı toplamı]]></category>
		<category><![CDATA[iki sayının toplamını alma]]></category>
		<guid isPermaLink="false">https://sezeryaman.com/?p=69</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;
using System.Threading.Tasks;

namespace odev1
{
    class Program
    {
        static void Main(string&#x5B;] args)
        {
            int a, b;
            string a1, a2;
            Console.Write(&quot;İlk sayıyı girin: &quot;);
            a1 = Console.ReadLine();

            while (true)
            {
                if (int.TryParse(a1, out a))
                {
                    break;
                }
                else
                {
                    Console.Write(&quot;İlk sayı için geçerli değer girilmedi. Tekrar girin: &quot;);
                    a1 = Console.ReadLine();
                }
            }

            Console.Write(&quot;İkinci sayıyı girin: &quot;);
            a2 = Console.ReadLine();

            while (true)
            {
                if (int.TryParse(a2, out b))
                {
                    break;
                }
                else
                {
                    Console.Write(&quot;İkinci sayı için geçerli değer girilmedi. Tekrar girin: &quot;);
                    a2 = Console.ReadLine();
                }
            }

            Console.WriteLine(&quot;\nİlk sayı: &quot; + a);
            Console.WriteLine(&quot;İkinci sayı: &quot; + b);
            Console.WriteLine(&quot;Toplamı: &quot; + (a + b));
        }
    }
}
</pre></div>]]></content:encoded>
					
					<wfw:commentRss>https://sezeryaman.com/c-ile-iki-sayinin-toplamini-alma/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
