<?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>seo arşivi &#187; Console Aplication</title>
	<atom:link href="http://www.seoarsivi.com/etiket/console-aplication/feed" rel="self" type="application/rss+xml" />
	<link>http://www.seoarsivi.com</link>
	<description>Arama Motoru Optimizasyonu , Scriptler ,Genel Bilgiler ve SEO Makaleleri</description>
	<lastBuildDate>Sat, 03 Mar 2012 17:01:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Asal sayımı değilmi</title>
		<link>http://www.seoarsivi.com/arsiv/asal-sayimi-degilmi.seo</link>
		<comments>http://www.seoarsivi.com/arsiv/asal-sayimi-degilmi.seo#comments</comments>
		<pubDate>Thu, 03 Dec 2009 16:54:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Arşiv]]></category>
		<category><![CDATA[asal sayı değilmi]]></category>
		<category><![CDATA[asal sayı örneği]]></category>
		<category><![CDATA[asal sayımı]]></category>
		<category><![CDATA[c# console]]></category>
		<category><![CDATA[Console Aplication]]></category>

		<guid isPermaLink="false">http://www.seoarsivi.com/?p=160</guid>
		<description><![CDATA[Klavyeden girilecek bir sayının asal sayı olup olmadığını ekrana basan bir program yazınız int sayi, i; //Sayıyı ilk başta asal kabul ediyoruz. //asal_mi değişkeni 1 ise, sayi asaldir. int asal_mi = 1; //Klavyeden, test edilmek üzere bir sayı alınıyor. sayi =Convert.ToInt32(Console.ReadLine()); //Girilen sayının, başka sayılara göre sırayla modunu //alıyoruz. Bir sayının modunu aldığınızda, kalan 0 [...]]]></description>
			<content:encoded><![CDATA[<p>Klavyeden girilecek bir sayının asal sayı olup olmadığını ekrana basan bir program yazınız</p>
<p>int sayi, i;</p>
<p>//Sayıyı ilk başta asal kabul ediyoruz.</p>
<p>//asal_mi değişkeni 1 ise, sayi asaldir.</p>
<p>int asal_mi = 1;</p>
<p>//Klavyeden, test edilmek üzere bir sayı alınıyor.</p>
<p>sayi =Convert.ToInt32(Console.ReadLine());</p>
<p>//Girilen sayının, başka sayılara göre sırayla modunu</p>
<p>//alıyoruz. Bir sayının modunu aldığınızda, kalan 0 ise</p>
<p>//bu sayının bölünebildiğine ve dolayısıyla</p>
<p>//asal olmadığına dair bilgi verir. Bu işlemi yapabilmek</p>
<p>//için 2&#8242;den başlayarak, sayının yarısına kadar olan</p>
<p>//bütün değerler deneniyor.</p>
<p>for( i = 2; i &lt; sayi; i++ ) {</p>
<p>if( sayi%i == 0 ) {</p>
<p>//Sayı i değişkenine kalansız bölünmektedir.</p>
<p>//Dolayısıyla, sayı asal değildir ve döngüyü</p>
<p>//sürdürmeye gerek yoktur.</p>
<p>asal_mi = 0;</p>
<p>break;</p>
<p>}</p>
<p>}</p>
<p>//Sayının asal olup olmama durumuna göre, çıktı yazdırılıyor.</p>
<p>if( asal_mi == 1 )</p>
<p>Console.WriteLine( &#8220;{0} sayısı asaldır.\n&#8221;, sayi );</p>
<p>else</p>
<p>Console.WriteLine( &#8220;{0} sayısı asal değildir.\n&#8221;, sayi );</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seoarsivi.com/arsiv/asal-sayimi-degilmi.seo/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yazıyı ters çeviren csharp console aplication</title>
		<link>http://www.seoarsivi.com/arsiv/yaziyi-ters-ceviren-csharp-console-aplication.seo</link>
		<comments>http://www.seoarsivi.com/arsiv/yaziyi-ters-ceviren-csharp-console-aplication.seo#comments</comments>
		<pubDate>Fri, 27 Nov 2009 21:54:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Arşiv]]></category>
		<category><![CDATA[Console Aplication]]></category>
		<category><![CDATA[Yazıyı ters çevir]]></category>

		<guid isPermaLink="false">http://www.seoarsivi.com/?p=130</guid>
		<description><![CDATA[string yazi = &#8220;BECERİ&#8221;; char[] ters = new char[yazi.Length]; for (int i = 0; i &#60; yazi.Length / 2; ++i) { ters[i] = yazi[yazi.Length - i - 1]; ters[yazi.Length - i - 1] = yazi[i]; } if (yazi.Length % 2 == 1) ters[yazi.Length / 2] = yazi[yazi.Length / 2]; Console.WriteLine(ters);]]></description>
			<content:encoded><![CDATA[<p>string yazi = &#8220;BECERİ&#8221;;</p>
<p>char[] ters = new char[yazi.Length];</p>
<p>for (int i = 0; i &lt; yazi.Length / 2; ++i)</p>
<p>{</p>
<p>ters[i] = yazi[yazi.Length - i - 1];</p>
<p>ters[yazi.Length - i - 1] = yazi[i];</p>
<p>}</p>
<p>if (yazi.Length % 2 == 1)</p>
<p>ters[yazi.Length / 2] = yazi[yazi.Length / 2];</p>
<p>Console.WriteLine(ters);</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seoarsivi.com/arsiv/yaziyi-ters-ceviren-csharp-console-aplication.seo/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Toplama, Çıkarma, Çarpma, Bölme</title>
		<link>http://www.seoarsivi.com/arsiv/toplama-cikarma-carpma-bolme.seo</link>
		<comments>http://www.seoarsivi.com/arsiv/toplama-cikarma-carpma-bolme.seo#comments</comments>
		<pubDate>Sun, 22 Nov 2009 15:39:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Arşiv]]></category>
		<category><![CDATA[bölme]]></category>
		<category><![CDATA[C Sharp]]></category>
		<category><![CDATA[çarpma]]></category>
		<category><![CDATA[çıkarma]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[Console Aplication]]></category>
		<category><![CDATA[örnek]]></category>
		<category><![CDATA[toplama]]></category>

		<guid isPermaLink="false">http://www.seoarsivi.com/?p=58</guid>
		<description><![CDATA[using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication13 { class Program { static void Main(string[] args) { string islem; Console.WriteLine("Toplama İşlemi İçin \"T\"ye basın"); Console.WriteLine("Çıkarma İşlemi İçin \"Ç\"ye basın"); Console.WriteLine("Çarpma İşlemi İçin \"X\"e basın"); Console.WriteLine("Bölme İşlemi İçin \"B\"ye basın"); islem = Console.ReadLine(); if (islem == "T") { Console.WriteLine(Int32.Parse(Console.ReadLine()) + Int32.Parse(Console.ReadLine())); } if (islem [...]]]></description>
			<content:encoded><![CDATA[<pre>using System;</pre>
<pre>using System.Collections.Generic;</pre>
<pre>using System.Linq;</pre>
<pre>using System.Text;</pre>
<pre>namespace ConsoleApplication13</pre>
<pre>{</pre>
<pre>class Program</pre>
<pre>{</pre>
<pre>static void Main(string[] args)</pre>
<pre>{</pre>
<pre>string islem;</pre>
<pre>Console.WriteLine("Toplama İşlemi İçin \"T\"ye basın");</pre>
<pre>Console.WriteLine("Çıkarma İşlemi İçin \"Ç\"ye basın");</pre>
<pre>Console.WriteLine("Çarpma İşlemi İçin \"X\"e basın");</pre>
<pre>Console.WriteLine("Bölme İşlemi İçin \"B\"ye basın");</pre>
<pre>islem = Console.ReadLine();</pre>
<pre>if (islem == "T")</pre>
<pre>{</pre>
<pre>Console.WriteLine(Int32.Parse(Console.ReadLine()) + Int32.Parse(Console.ReadLine()));</pre>
<pre>}</pre>
<pre>if (islem == "Ç")</pre>
<pre>{</pre>
<pre>Console.WriteLine(Int32.Parse(Console.ReadLine()) - Int32.Parse(Console.ReadLine()));</pre>
<pre>}</pre>
<pre>if (islem == "X")</pre>
<pre>{</pre>
<pre>Console.WriteLine(Int32.Parse(Console.ReadLine()) * Int32.Parse(Console.ReadLine()));</pre>
<pre>}</pre>
<pre>if (islem == "B")</pre>
<pre>{</pre>
<pre>Console.WriteLine(Int32.Parse(Console.ReadLine()) / Int32.Parse(Console.ReadLine()));</pre>
<pre>}</pre>
<pre>}</pre>
<pre>}</pre>
<pre>}</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.seoarsivi.com/arsiv/toplama-cikarma-carpma-bolme.seo/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

