Programalama > C++

Etiketler: sayisal, loto

Ort. 0
Puan ver:
#include<iostream>
using std::cout;
using std::cin;
using std::endl;
#include<iomanip>
using std::setw;
#include<ctime>



int isPresent(int * arr, int uBound , int v)
{
int i = 0 ;
while( i < uBound)
{
if (*(arr+i) == v )
return i;
i++;
}
return -1;
}



int main()
{
int a=0,b[6];
srand(time(0));
cout<<endl<<endl<<setw(40)<<"SAYISAL LOTO"<<endl<<endl<<setw(46)<<"  Created by Okan SARICA "<<endl<<endl;
cout<<setw(50)<<" Programi kapatmak  icin -1 girin "<<endl<<endl;


int v ;
int j;
while(a!=-1)
{
cout<<setw(50)<<" Programi kapatmak  icin -1 girin "<<endl;
cout<<setw(44)<<"     Kac kolon oynayacaksin ? : ";
cin>>a;
a= 5;
cout<<endl<<endl;

for(int i=1;i<=a;i++)
{
for(j = 0;j<6;j++)
{
v = rand()%10+1;
while( isPresent(b,j,v) >= 0 )
v = rand()%10+1;
b[j] = v;
}

cout<<setw(18)<<i<<". Kolon : "<<setw(5);
for(int l=0;l<6;l++)
{
cout<<setw(5)<<b[l];
}
cout<<endl<<endl<<endl;
}

}
return 0;
}


Yorumlar                 Yorum Yaz
Bu hazır kod'a ilk yorumu siz yapın!
KATEGORİLER
ASP - 240
ASP.NET - 24
C# - 75
C++ - 174
CGI - 8
DELPHI - 247
FLASH - 49
HTML - 536
PASCAL - 246
PERL - 11
PHP - 160
WML - 9
XML - 2
Copyright © 2002 - 2024 Hazır Kod - Tüm Hakları Saklıdır.
Siteden yararlanırken gizlilik ilkelerini okumanızı tavsiye ederiz.
hazirkod.com bir İSOBİL projesidir.