<?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>Umut Ulus &#187; sayısal loto</title>
	<atom:link href="http://www.umutulus.com/etiket/sayisal-loto/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.umutulus.com</link>
	<description>Kişisel İnternet Günlüğü</description>
	<lastBuildDate>Mon, 14 Dec 2009 18:01:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>C++&#8217;de sayisal loto programı kodları</title>
		<link>http://www.umutulus.com/c-da-sayisal-loto.htm/</link>
		<comments>http://www.umutulus.com/c-da-sayisal-loto.htm/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 20:42:00 +0000</pubDate>
		<dc:creator>Umut</dc:creator>
				<category><![CDATA[Programlama]]></category>
		<category><![CDATA[c]]></category>
		<category><![CDATA[c++ sayisal loto]]></category>
		<category><![CDATA[sayısal loto]]></category>

		<guid isPermaLink="false">http://umutulus.com/?p=9</guid>
		<description><![CDATA[#include&#60;iostream&#62;
using std::cout;
using std::cin;
using std::endl;
#include&#60;iomanip&#62;
using std::setw;
#include&#60;ctime&#62;
int isPresent(int * arr, int uBound , int v)
{
int i = 0 ;
while( i &#60; uBound)
{
if (*(arr+i) == v )
return i;
i++;
}
return -1;
}
int main()
{
int a=0,b[6];
srand(time(0));
cout&#60;&#60;endl&#60;&#60;endl&#60;&#60;setw(40)&#60;&#60;&#8221;SAYISAL LOTO&#8221;&#60;&#60;endl&#60;&#60;endl&#60;&#60;setw(46)&#60;&#60;&#8221;  Created by UMUT ULUS &#8220;&#60;&#60;endl&#60;&#60;endl;
cout&#60;&#60;setw(50)&#60;&#60;&#8221; Programi kapatmak  icin -1 girin &#8220;&#60;&#60;endl&#60;&#60;endl;
int v ;
int j;
while(a!=-1)
{
cout&#60;&#60;setw(50)&#60;&#60;&#8221; Programi kapatmak  icin -1 girin &#8220;&#60;&#60;endl;
cout&#60;&#60;setw(44)&#60;&#60;&#8221;     Kac kolon oynayacaksin ? : &#8220;;
cin&#62;&#62;a;
cout&#60;&#60;endl&#60;&#60;endl;
for(int [...]]]></description>
			<content:encoded><![CDATA[<p>#include&lt;iostream&gt;</p>
<p>using std::cout;</p>
<p>using std::cin;</p>
<p>using std::endl;</p>
<p>#include&lt;iomanip&gt;</p>
<p>using std::setw;</p>
<p>#include&lt;ctime&gt;</p>
<p>int isPresent(int * arr, int uBound , int v)</p>
<p>{</p>
<p>int i = 0 ;</p>
<p>while( i &lt; uBound)</p>
<p>{</p>
<p>if (*(arr+i) == v )</p>
<p>return i;</p>
<p>i++;</p>
<p>}</p>
<p>return -1;</p>
<p>}</p>
<p>int main()</p>
<p>{</p>
<p>int a=0,b[6];</p>
<p>srand(time(0));</p>
<p>cout&lt;&lt;endl&lt;&lt;endl&lt;&lt;setw(40)&lt;&lt;&#8221;SAYISAL LOTO&#8221;&lt;&lt;endl&lt;&lt;endl&lt;&lt;setw(46)&lt;&lt;&#8221;  Created by UMUT ULUS &#8220;&lt;&lt;endl&lt;&lt;endl;</p>
<p>cout&lt;&lt;setw(50)&lt;&lt;&#8221; Programi kapatmak  icin -1 girin &#8220;&lt;&lt;endl&lt;&lt;endl;</p>
<p>int v ;</p>
<p>int j;</p>
<p>while(a!=-1)</p>
<p>{</p>
<p>cout&lt;&lt;setw(50)&lt;&lt;&#8221; Programi kapatmak  icin -1 girin &#8220;&lt;&lt;endl;</p>
<p>cout&lt;&lt;setw(44)&lt;&lt;&#8221;     Kac kolon oynayacaksin ? : &#8220;;</p>
<p>cin&gt;&gt;a;</p>
<p>cout&lt;&lt;endl&lt;&lt;endl;</p>
<p>for(int i=1;i&lt;=a;i++)</p>
<p>{</p>
<p>for(j = 0;j&lt;6;j++)</p>
<p>{</p>
<p>v = rand()%49+1;</p>
<p>while( isPresent(b,j,v) &gt;= 0 )</p>
<p>v = rand()%49+1;</p>
<p>b[j] = v;</p>
<p>}</p>
<p>cout&lt;&lt;setw(18)&lt;&lt;i&lt;&lt;&#8221;. Kolon : &#8220;&lt;&lt;setw(5);</p>
<p>for(int l=0;l&lt;6;l++)</p>
<p>{</p>
<p>cout&lt;&lt;setw(5)&lt;&lt;b[l];</p>
<p>}</p>
<p>cout&lt;&lt;endl&lt;&lt;endl&lt;&lt;endl;</p>
<p>}</p>
<p>}</p>
<p>return 0;</p>
<p>}</p>
]]></content:encoded>
			<wfw:commentRss>http://www.umutulus.com/c-da-sayisal-loto.htm/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
