<?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; çarpma</title>
	<atom:link href="http://www.seoarsivi.com/etiket/carpma/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>Matematiksel işlem örnekleri</title>
		<link>http://www.seoarsivi.com/arsiv/matematiksel-islem-ornekleri.seo</link>
		<comments>http://www.seoarsivi.com/arsiv/matematiksel-islem-ornekleri.seo#comments</comments>
		<pubDate>Sun, 22 Nov 2009 21:00:28 +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[işlem]]></category>
		<category><![CDATA[kalan]]></category>
		<category><![CDATA[metematik]]></category>
		<category><![CDATA[örnek]]></category>
		<category><![CDATA[toplama]]></category>

		<guid isPermaLink="false">http://www.seoarsivi.com/?p=84</guid>
		<description><![CDATA[public static void Main() { int toplam = 0, fark = 0, carpim = 0, kalan = 0; float bolum = 0; int sayi1 = 0, sayi2 = 0; Console.WriteLine(&#8220;Sayı Biri Giriniz : &#8220;); sayi1 = Convert.ToInt32(Console.ReadLine()); Console.WriteLine(&#8220;Sayı İkiyi Giriniz : &#8220;); sayi2 = Convert.ToInt32(Console.ReadLine()); toplam = sayi1 + sayi2; fark = sayi1 &#8211; sayi2; carpim = sayi1 * sayi2; kalan = sayi1 [...]]]></description>
			<content:encoded><![CDATA[<p>public static void Main()</p>
<p>{</p>
<p>int toplam = 0, fark = 0, carpim = 0, kalan = 0;</p>
<p>float bolum = 0;</p>
<p>int sayi1 = 0, sayi2 = 0;</p>
<p>Console.WriteLine(&#8220;Sayı Biri Giriniz : &#8220;);</p>
<p>sayi1 = Convert.ToInt32(Console.ReadLine());</p>
<p>Console.WriteLine(&#8220;Sayı İkiyi Giriniz : &#8220;);</p>
<p>sayi2 = Convert.ToInt32(Console.ReadLine());</p>
<p>toplam = sayi1 + sayi2;</p>
<p>fark = sayi1 &#8211; sayi2;</p>
<p>carpim = sayi1 * sayi2;</p>
<p>kalan = sayi1 % sayi2;</p>
<p>bolum = sayi1 / sayi2;</p>
<p>Console.WriteLine(&#8220;Girilen Sayılar: Sayı 1 = {0}, Sayı 2 = {1}&#8221;,sayi1,sayi2);</p>
<p>Console.WriteLine(&#8220;Sayıların Toplamı = {0}&#8221;,toplam);</p>
<p>Console.WriteLine(&#8220;Sayıların Farkı (sayi1 &#8211; sayi2) = {0}&#8221;, fark);</p>
<p>Console.WriteLine(&#8220;Sayıların Çarpımı = {0}&#8221;, carpim);</p>
<p>Console.WriteLine(&#8220;Sayıların kalan (sayi1 in sayi2 ye bölümğnden kalan)= {0}&#8221;, kalan);</p>
<p>Console.WriteLine(&#8220;Sayıların Bölümünden (sayi1 / sayi2) Bölüm = {0}&#8221;, bolum);</p>
<p>sayi1++;</p>
<p>sayi2&#8211;;</p>
<p>Console.WriteLine(&#8220;Sayi 1  in bir fazlası = {0}&#8221;, sayi1);</p>
<p>Console.WriteLine(&#8220;Sayi 2  in bir eksiği = {0}&#8221;, sayi2);</p>
<p>}</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seoarsivi.com/arsiv/matematiksel-islem-ornekleri.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>

